macOS 上编译obs-studio

相关链接:

各个平台从源码编译:https://obsproject.com/wiki/install-instructions

Wiki - Install Instructions | OBS

https://github.com/obsproject/obs-deps

要首先编译obs-deps,执行里面的2个CI脚本,有可能出现下载失败的问题,办法只能是多试几次,外加一点运气。

https://github.com/obsproject/obs-studio/wiki/Install-Instructions#macos-build-directions

然后再编译obs-studio。

Mac上编译obs-studio,比较麻烦。

如果不需要brew更新,可以执行一下 export HOMEBREW_NO_AUTO_UPDATE=1 之后再继续。

步骤:

1. 下载obs和obs-deps代码,记得要加上submodule

2. 先根据obs-deps的wiki说明,编译好之后,将编译打包的结果(obs-deps/macos/下的2个tar.xz包)解压到/tmp/obsdeps/目录下,解压过程中会遇到文件夹合并的问题,记得要合并一

下。

macOS 上编译obs-studio

obs-deps中CI目录下两个脚本会把需要大第三方代码下载到与obs-deps同级的目录,名为 obs-build-dependencies.

这两个脚本执行的过程中可能会遇到代码下载失败,只能多试几次,碰碰运气。

3. 然后,返回obs-studio代码来,直接使用cmake-gui来操作,

macOS 上编译obs-studio

需要设置一下环境变量:

QTDIR=/tmp/obsdeps

BUILD_DIR=build

macOS 上编译obs-studio

然后开始执行configrure,这里选择Xcode方式。可能要多点几次,看看还有哪些cmake变量需要修改。记住 BUILD_BROWSER一定要勾选上,不然后面的obs-helper.app不会生成。

设置CEF_ROOT_DIR需要在点击一次Configure失败之后设置一下。cef在第一步obs-deps执行shell脚本的时候下载的。

顺利的话,可以执行完configure,之后再执行Generate,然后Open Project。

然后选择ALL_BUILD项Scheme。按下CMD+B开始编译。 此时,整个Xcode工程默认按照Debug选项编译。编译一般会成功,然后,打开命令行,cd到build目录,执行命令:

../CI/full-build-macos.sh -d -b -s

不过需要修改一下这个脚本中的内容:

macOS 上编译obs-studio

开始打包,过程中可能碰到找不到QtGui和QtCore的情况,按照提示输入下面路径,可以顺利通过:

/!\ WARNING: Dependency QtGui of /Users/will/OpenSource/obs-studio/build/OBS.app/Contents/PlugIns/imageformats/libqjp2.dylib not found

Please specify the directory where this file is located (or enter 'quit' to abort): /private/tmp/obsdeps/lib/QtGui.framework

/private/tmp/obsdeps/lib/QtGui.framework/QtGui was found

/!\ WARNING: dylibbundler MAY NOT CORRECTLY HANDLE THIS DEPENDENCY: Check the executable with 'otool -L'

/!\ WARNING: Dependency QtCore of /Users/will/OpenSource/obs-studio/build/OBS.app/Contents/PlugIns/imageformats/libqjp2.dylib not found

Please specify the directory where this file is located (or enter 'quit' to abort): /private/tmp/obsdeps/lib/QtCore.framework

等等……,反正就在/private/tmp/obsdeps/lib下面找对应的Qt库目录。

最后执行完毕,obs.app生成在build目录下。

关于调试:

按照obs-studio的wiki说法,只能新建一个framework工程,然后指定app作为运行程序,这样来调试。

我试了一下,可以

1. 直接启动obs.app,然后attach process。

2. scheme选到ALL_BUILD,然后在Executable的地方选中上面打包好的OBS.app,然后就可以直接调试启动。

macOS 上编译obs-studio

其他问题:

如果attach的时候出现Xcode崩溃,或者提示权限之类的问题,那我也只能是重新编译了。

上一篇:Goldengate Integrated Capture hungs when reading from Oracle 19c


下一篇:二进制日志配置和运维管理