live555 集成到 iPhone 应用程序中,用于将 RTMP 或 RTSP 视频流式传输到 iPhone

发布于 2024-11-09 03:38:57 字数 140 浏览 2 评论 0原文

有谁有任何代码或者可以为我指出集成 live555 的正确方向吗 进入 iPhone 应用程序。我知道你可以为 iOS 构建 live555 C++ 库,但我不知道 确定在代码级别的实际集成。

教程或一些代码的链接会很棒:)

谢谢。

Does anyone have any code or can point me in the right direction for integrating live555
into an iPhone app. I know that you can build the live555 C++ library for iOS but am not
sure about the actual integration of this at a code level.

A link to a tutorial or some code would be wonderful :)

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

  1. 在这里下载 live555 在这里
  2. 解压它(在我的例子中是 /Volumes/OSX/live)
  3. 找到配置。 iphoneos 使用文本编辑器打开它
  4. 将 LINK_OPTS 更改为

    LINK_OPTS = -L。 -arch armv7 --sysroot=$(SDK) -L$(SDK)/usr/lib/system

    IOS_VERSION = 6.0(您当前的 SDK)

  5. 在终端中导航到 live555 目录(我的情况 cd /Volumes/OSX/live)

  6. 然后在终端 ./genMakefiles iphoneos 中运行

  7. 运行在终端 make

  1. Download live555 here
  2. Unpack it somevhere (in my case /Volumes/OSX/live)
  3. find config.iphoneos an open it using text editor
  4. change LINK_OPTS to

    LINK_OPTS = -L. -arch armv7 --sysroot=$(SDK) -L$(SDK)/usr/lib/system
    and

    IOS_VERSION = 6.0 (your current sdk)

  5. navigate in terminal to live555 dir (my case cd /Volumes/OSX/live)

  6. then run in terminal ./genMakefiles iphoneos

  7. run in terminal make

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文