在 iPhone 上保存流(mp4)

发布于 2024-10-06 16:40:43 字数 167 浏览 2 评论 0原文

我有一个问题。我需要你们的帮助。 我正在开发一个应用程序,用户可以在其中观看流(mp4)或下载它。 我已经成功在 iPhone 模拟器上下载流(mp4),文件就在那里并且工作完美,但是当我尝试在 iPhone 上运行该应用程序时,它无法工作。文件在那里,但我无法播放。请帮忙...(这是在 Monotouch 中完成的)

I have a problem. I need your help guys.
Im working on an app where the user can either watch a stream(mp4) or download it.
I've succeded to download the stream (mp4) on the iphone simulator and the file is there and it works perfect, but when I try to run the app on the iphone it will not work. The file is there but I can't play it. Please help... (It's done in Monotouch)

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

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

发布评论

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

评论(1

忆梦 2024-10-13 16:40:43

注意文件编码 iPhone 3G 和其他 iOS 设备只能播放 mp4 文件的特定子集。

MPMoviePlayerController 的 Apple 文档中:

此类播放任何电影或音频
iOS 支持的文件。这包括
流式内容和固定长度
文件。对于电影文件,这通常是
表示扩展名为 .mov 的文件,
.mp4、.mpv 和 .3gp 并使用其中之一
以下压缩标准:

  • H.264 基线配置文件级别 3.0 视频,30 fps 时高达 640 x 480。 (这
    基线配置文件不支持B
    帧。)
  • MPEG-4 第 2 部分视频(简单配置文件)

如果你使用这个类来播放音频
文件时,它会显示一个白屏
QuickTime 徽标,而音频
播放。对于音频文件,此类
支持高达 48 kHz 的 AAC-LC 音频,
和 MP3(MPEG-1 音频第 3 层)高达
48 kHz,立体声音频。

Pay attention to file encoding iPhone 3G and other iOS device can play only a specific subset of mp4 file.

In Apple documentation of MPMoviePlayerController:

This class plays any movie or audio
file supported in iOS. This includes
both streamed content and fixed-length
files. For movie files, this typically
means files with the extensions .mov,
.mp4, .mpv, and .3gp and using one of
the following compression standards:

  • H.264 Baseline Profile Level 3.0 video, up to 640 x 480 at 30 fps. (The
    Baseline profile does not support B
    frames.)
  • MPEG-4 Part 2 video (Simple Profile)

If you use this class to play audio
files, it displays a white screen with
a QuickTime logo while the audio
plays. For audio files, this class
supports AAC-LC audio at up to 48 kHz,
and MP3 (MPEG-1 Audio Layer 3) up to
48 kHz, stereo audio.

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