windows编译 obs-studio

github下载源码 https://github.com/jp9000/obs-studio

还需要一个开发包 http://code.fosshub.com/OBS/download/dependencies.zip

环境:windows 7 64位系统

工具:cmake 2.8.12,vs2013最新版,qt5.3.2(msvc2013_opengl版本)

编译说明:https://github.com/jp9000/obs-studio/wiki/Install-Instructions#windows

开始编译-----------------------------------------------------------------

· cmake-gui中,填写源码路径,生成路径

· 点击configure,编译器选择vs 12(相当于vs2013),其它选项默认

·  如果出现此框(本文以下称error框),请注意cmake中的输出窗口错误,会有相应的错误信息

目前为止,还没有配置过相关路径,出现error框是正常的

· 配置各种参数:

解压dependencies.zip,到当前目录。

cmake-gui中点击Add Entry按钮。name项填写 DepsPath,type选项为PATH,value项为dependencies文件夹的全路径

添加如上路径

另外,有个zlib库,需要额外添加一下(github上没有提到)。

重新configure,

没有意外的话,输出框提示“Configuring done”,代表configure成功

· 点击Generate按钮,生成工程。出现"generate done",代表生成完毕。

· 生成路径中,出现一个obs-studio.sln。vs2013打开并编译该sln,搞定。

  • Clone the repository and submodules:

     git clone --recursive https://github.com/jp9000/obs-studio.git
    
  • NOTE: OBS on windows currently requires VS2013 with the latest update, as obs-studio uses both C99 and C++11. Express might not be supported at this time (though if not, then it‘ll be fixed it at some point). You can always just get VS2013 Community Edition for free. In case you want to try with VS2015, this hint might be useful regarding a linking error (LNK2001 : unresolved external symbol _sprintf) in the text-freetype2 project.
  • Download (or build) development packages of FFmpeg, x264, Qt5, cURL. Pre-built windows dependencies (excluding Qt) for VS2013 can be found here:http://code.fosshub.com/OBS/downloads
  • Download windows version of cmake from: http://www.cmake.org/
  • The following variables must be used to specify dependencies, these variables can either be specified via a windows environment variable, or through a cmake variable (optionally suffixed with ‘32‘ or ‘64‘ to specify architecture):
    • DepsPath (path to the include for all dependencies, not including Qt)
    • FFmpegPath (path to just FFmpeg include directory)
    • x264Path (path to just x264 include directory)
    • curlPath (path to just cURL include directory)
  • NOTE: Search paths and search order for base dependency library/binary files, relative to their include directories:

    Library files

    • ../lib
    • ../lib32 (if 32bit)
    • ../lib64 (if 64bit)
    • ./lib
    • ./lib32 (if 32bit)
    • ./lib64 (if 64bit)

    Binary files:

    • ../bin
    • ../bin32 (if 32bit)
    • ../bin64 (if 64bit)
    • ./bin
    • ./bin32 (if 32bit)
    • ./bin64 (if 64bit)
  • If you‘re building the GUI, the following cmake or windows environment variable must be used separately from the other dependencies to specify Qt5‘s location. Like the other environment variables, append 32 or 64 if you wish to build both architectures:

    QTDIR (path to Qt build base directory)

  • NOTE: The GUI builds by default. If you don‘t want to build the GUI, add a cmake boolean variable DISABLE_UI, set to true.
  • NOTE: An example Qt directory you would use here if you installed Qt5 to D:\Qt would usually look something like this:

    (32bit) D:\Qt\5.3\msvc2013
    (64bit) D:\Qt\5.3\msvc2013_64

  • Run cmake-gui. In "where is the source code", enter in the repo directory (example: D:/obs). In "where to build the binaries", enter the repo directory path with the ‘build‘ subdirectory (example: D:/obs/build).
  • NOTE: You should create one or more of the following subdirectories within the repository for building: release, debug, and build (suffixed with or without 32/64 to specify architecture). They are excluded from the repo in .gitignore for the sake of building, so they are safe to create an use within the repository base directory.
  • Press ‘Configure‘, then enable the COPY_DEPENDENCIES option, then press ‘Configure‘ again, and then press ‘Generate‘ to generate visual studio project files in the ‘build‘ subdirectory.
  • Open obs-studio.sln from the ‘build‘ subdirectory, and it should run and be good to go. All required dependencies should be copied on compile and it should be a fully fuctional build environment. The output is built in the ‘rundir/[build type]‘ directory of your ‘build‘ subdirectory.
时间: 2024-10-24 08:47:11

windows编译 obs-studio的相关文章

【转载】OGRE 2.1 Windows 编译

OGRE 2.1 Windows 编译 环境: Windows 7 64Bit Visual Studio 2012 OGRE 2.1 CMake 2.8.12.1 OGRE: OGRE官方推出了最新的OGRE2.1版本,链接地址: https://bitbucket.org/sinbad/ogre/downloads 新版本的OGRE做出了大量的修改,从官方给出的文档我们可以看出作者们对OGRE进行了优化与完善.从上面链接中下载的官方版本并没有包含编译需要的依赖项(一向都这样),所以我们需要下

【Lua学习笔记之:Lua环境搭建 Windows 不用 visual studio】

Lua 环境搭建 Windows 不用 visual studio 系统环境:Win7 64bit 联系方式:[email protected] 前言: 最近需要学习Unity3d游戏中的热更新技术,选择ULua方案,因此准备学习一些Lua的基础知识.之前在Ubuntu上曾经写过Lua版本的"HelloWorld", 但那时的环境搭建只需要下载源码,然后 make & make install 就可以了,但一到Windows下就完全不会做了.经过网络查找对比,得到目前自认为较好

Windows下visual studio code搭建golang开发环境

Windows下visual studio code搭建golang开发环境 序幕 其实环境搭建没什么难的,但是遇到一些问题,主要是有些网站资源访问不了(如:golang.org),导致一些包无法安装,最终会导致环境搭建失败,跟据这个教程几步,我们将可以快速的构建golang的开发环境. 开发环境: 一.安装 这里我用需要安装一些工具: 1.Visual Studio Code 1.0.0 2.Golang下载 这里我使用的是Go1.6. 3.git下载 这一步跟建环境没什么关系, 但是之后要引

Qpid第一课 Windows编译C++/ Qpid Client

一 浏览编译文档 INSTALL-WINDOWS.txt文档描述了Windows编译Qpid的操作步骤以及注意事项,当前采用的是Microsoft Visual Studio 2015(VC14)编译Qpid,文档指定的编译器是Microsoft Visual Studio 2012(VC11) 二编译依赖库 Qpid源码编译需要的原料: * boost      <http://www.boost.org>                   (1.58) * CMake      <

CEF3.2623使用记录:windows编译

CEF3.2623使用记录:windows编译 1:cef3.2623下载地址 2623是cef3最后一个支持xp系统的版本,且可以支持html的audio标签,可以用作对html音频的处理下载地址为 https://bitbucket.org/chromiumembedded/cef/branch/2623.下载win32版本的cef3.2623压缩包内容如下图所示: 2:cmake编译器 编译cef3需要用到cmake编译器,从官方下载,地址为https://cmake.org/downlo

windows 编译Lua

http://www.linuxidc.com/Linux/2014-02/96459.htm sublime 配置lua build sysytem -> new build system. the content: { "cmd": ["D:\\TDDOWNLOAD\\lua-5.2.3\\lua-5.2.3\\bin\\lua.exe","$file"], "file_regex": "^(...*?):

[Cordova] 无法编译Visual Studio项目里Plugin副本的Native Code

[Cordova] 无法编译Visual Studio项目里Plugin副本的Native Code 问题情景 开发Cordova Plugin的时候,开发的流程应该是: 建立Cordova Plugin 发布到本机文件系统或是Git服务器 使用Visual Studio挂载Plugin 编译并执行项目 在这个开发的过程中,如果在编译并执行项目的这个步骤,发现Plugin的Native Code需要修正.直觉的想法,会是直接修改Cordova项目里Plugin副本的Native Code之后,再

windows编译ffmpeg2.2.4并外挂h265

0.前言 据说新出来了h265的视频,在迅雷看看上面看到的,网上查看了一下简介,貌似h265的视频比h264的视频压缩率要高,而且能做4K的视频. 同时看到网上有人试过ffmpeg在编译的时候加上了h265,这样ffmpeg看起来倒是能外挂h265的编解码,所以这篇blog文,主要是用ffmpeg来尝试一下h265. 这里引用几张x265的介绍图片(当然我自己的显示器也是4k的): 1.首先下载ffmpeg源代码 目前最新版是2.2.4 下载传送门:http://www.ffmpeg.org/r

windows ubuntu Android studio安装好启动没反应解决方法

 参考:http://blog.csdn.net/qq305013720/article/details/8934152 目前有三种解决方案,都是针对执行studio.bat出现错误导致android studio运行不起来,最后都是异工同曲:我用的第一种方法 1.改虚拟机配置文件studio.exe.vmoptions 有人说是java环境变量,如果不会照着设置 http://blog.csdn.net/huanghm88/article/details/3965218 因为Eclipse

免费录屏软件之OBS Studio

好久没有再博客活动啦,今天给大家推荐一下录屏软件吧!首先我个人最喜欢的OBS Studio就说说它吧 1.免费.开源.功能强大.易上手 ? ? ? 下面是下载地址: 官网下载 : https://obsproject.com/ 官网下载速度较慢 百度网盘下载链接:https://pan.baidu.com/s/1RCoyRWSqkA7hu5Jlz_6tQA提取码:zk9j 其他的更多的免费改天在做分享吧! 原文地址:https://www.cnblogs.com/MiniTree/p/10896