0

我想为iOS(iPhone和iPad)制作一个可以通过RTSP协议(包括mms)播放流媒体视频的应用程序。我想象使用 VLC 播放器或 libVLC 库来实现指定的应用程序。

projects/macosx/framework/文件夹中的官方 vlc git 存储库 (http://git.videolan.org/?p=vlc.git;a=tree) 上有 xcode 项目MobileVLCKit.xcodeproj,我认为这是一个适用于 iOS 的一些有用的 VLC 框架。

现在的问题是我不能/不知道如何构建这个项目。当我尝试构建 MobileVLCKit.xcodeproj 时,我收到一条错误消息,提示它在 extras/contrib/hosts/i686-apple-darwin10/ios/ 文件夹中找不到文件。

我查看了该文件夹(extras/contrib)并设法使用make创建文件夹(带有文件)extras/contrib/hosts/i686-apple-darwin10/,但没有ios文件夹。

那么,有人知道如何成功构建 MobileVLCKit 吗?

4

3 回答 3

2
$ git clone git://git.videolan.org/MobileVLC.git
$ cd MobileVLC
$ ./buildMobileVLC.sh

见: http ://wiki.videolan.org/MobileVLC

请注意,在您的应用程序中使用 VLC 的任何部分,都会使您的应用程序开源和 GPL。

于 2010-12-27T16:49:07.783 回答
0

我正在努力构建这个 ios 版本。

如果你 git 克隆今天的版本,你会在额外的文件夹中找到更完整的 ios 支持:extra/contrib/src/Distributions/ios.mak 和 extra/package/ios/build_for_iOS.sh

extra/contrib/bootstrap 现在兼容“ios”!

请注意此版本需要 ios4.2(请参阅 build_for_iOS.sh)

我有 ffmpeg 的问题,但这是另一个故事

vlc 为 ios 构建需要一个“howto”!

入口点是“build_for_iOS.sh” build_for_iOS.sh 调用引导程序

如果正确完成(祝你好运),MobileVLCKit 会找到它需要的文件(我希望)

于 2010-11-03T09:20:12.307 回答
0

不要使用 git 来获取最新的源代码。由于 vlc 不适用于 iOS。但是您可以从 videolan.com 获取 mobilevlc 1.1.0

http://www.videolan.org/vlc/download-ios.html

你最好安装 Xcode 3.2.5 和 iOS SDK 4.2

于 2012-06-04T09:08:03.710 回答