有没有办法在 Android 上播放 .mxf 视频?
据developer.android.com称,Android支持使用H.263、H.264 AVC、MPEG4 SP和VP8编解码器播放视频。但是,我想播放以 .mxf 格式编码的视频(Material eXchange 格式,http://en。 wikipedia.org/wiki/MXF)在我的应用程序中。我该怎么办?
According to developer.android.com, the Android supports the playing of video using the H.263, H.264 AVC, MPEG4 SP and VP8 codecs. However, I want to play a video encoded in the .mxf format (Material eXchange Format, http://en.wikipedia.org/wiki/MXF) in my app. How do I go about it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MXF 通常包含 MPEG-2 / AVC 视频,其配置文件/级别不受 Android 设备中的解码器支持。具体来说,IMX 是主级别的 422 配置文件,而 HD MPEG-2 MXF 通常是高级级别的 422 配置文件。
MXF generally contains MPEG-2 / AVC video with profile/levels not supported by the decoders in the android devices. Specifically IMX is 422 profile at main level and HD MPEG-2 MXF is generally 422 profile at high level.
经验法则表明您必须使用最常见且资源密集程度较低的编解码器。糟糕的视频播放会破坏交易。也许您知道格式带来的巨大差异,但用户却不知道。
The rule of the thumb says that you must use the most common and less resource intensive codec. Bad video playback is a deal breaker. Maybe you know the huge difference that format makes but the user won't.