gpt4 book ai didi

ios - FFMPEG 将 .avi 转换为可播放的 iOS 电影 mp4

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:55:54 24 4
gpt4 key购买 nike

我正在尝试将 h264 编码的 baseline4.0 avi 文件转换为使用 baseline3 编码的新 h264 mpeg 文件。

由于 baseline4.0(我认为?),原始文件无法在任何 iOS 设备上播放

我在这里使用这个包装类 https://github.com/OpenWatch/FFmpegWrapper

但实际上我不知道如何设置基线。我可以转换为 mpeg4,但似乎每次都默认为 baseline4.0。

我试图在 AVCodecContext 上设置它

AVCodecContext *outputCodecContext = outputStream->codec;
outputCodecContext->level = 31;
outputCodecContext->profile = FF_PROFILE_H264_BASELINE;

但这没有效果。

也许任何人都有线索,或者有更好的 FFMPEGWrapper。

原始视频的规范: original video

最佳答案

首先看一下this了解哪些苹果设备支持什么的站点:

  • Encode video using H.264 compression

    • H.264 Baseline 3.0: All devices
    • H.264 Baseline 3.1: iPhone 3G and later, and iPod touch 2nd generation and later.
    • H.264 Main profile 3.1: iPad (all versions), Apple TV 2 and later, and iPhone 4 and later.
    • H.264 Main Profile 4.0: Apple TV 3 and later, iPad 2 and later, and iPhone 4S and later.
    • H.264 High Profile 4.0: Apple TV 3 and later, iPad 2 and later, and iPhone 4S and later.
    • H.264 High Profile 4.1: iPad 2 and later and iPhone 4S and later.

每个配置文件末尾的数字不是配置文件的版本!它是一个级别。这意味着如果您想支持所有设备,您应该坚持基线配置文件和 3.0 级。

我不知道这个包装器的东西,但是使用简单的 ffmpeg 你会使用这个选项:

-profile:v baseline -level 3.0

编辑:

抱歉,我没有注意到您已经设置了级别(可能是正确的方式)。但这里还有一个提示。注意在 FFmpegWrapperinit 中调用 av_register_all()avcodec_register_all() .会不会是先初始化wrapper再改AVCodecContext

关于ios - FFMPEG 将 .avi 转换为可播放的 iOS 电影 mp4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34675983/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com