问题描述
任何人都没有任何代码,或者可以为我指出集成live555的正确方向吗?进入iPhone应用程序.我知道您可以为iOS构建live555 C ++库,但不能确保在代码级别将其实际集成.
Does anyone have any code or can point me in the right direction for integrating live555into an iPhone app. I know that you can build the live555 C++ library for iOS but am notsure about the actual integration of this at a code level.
指向教程或一些代码的链接会很不错:)
A link to a tutorial or some code would be wonderful :)
谢谢.
推荐答案
- 在此处下载 live555
- 在某种程度上打开它的包装(在我的情况下是/Volumes/OSX/live)
- 找到config.iphoneos,使用文本编辑器将其打开
-
将LINK_OPTS更改为
- Download live555 here
- Unpack it somevhere (in my case /Volumes/OSX/live)
- find config.iphoneos an open it using text editor
change LINK_OPTS to
LINK_OPTS = -L.-arch armv7 --sysroot = $(SDK)-L $(SDK)/usr/lib/system和
LINK_OPTS = -L. -arch armv7 --sysroot=$(SDK) -L$(SDK)/usr/lib/systemand
IOS_VERSION = 6.0(您当前的SDK)
IOS_VERSION = 6.0 (your current sdk)
在终端中导航到live555目录(我的情况是cd/Volumes/OSX/live)
navigate in terminal to live555 dir (my case cd /Volumes/OSX/live)
然后在终端./genMakefiles iphoneos
then run in terminal ./genMakefiles iphoneos
在终端机中运行
这篇关于将live555集成到iPhone应用程序中,以便将RTMP或RTSP视频流式传输到iPhone的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!