将 mkv 转换为 mp4 时出现 ffmpeg 错误

将 mkv 转换为 mp4 时出现 ffmpeg 错误

我对该命令生成的输出文件有疑问:

ffmpeg -i in.mkv -ss 00:20:00 -to 00:22:00 -c copy out.mp4

当我对 out.mp4 进行 ffprobe 时,出现此错误:

"Could not find codec parameters for stream 0 (Video: h264 (avc1 / 0x31637661), none, 1280x692, 2598 kb/s): unspecified pixel format".

带有 ffprobe 的 in.mkv 文件显示以下内容:

`"streams":
        {
            "index": 0,
            "codec_name": "h264",
            "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10",
            "profile": "High",
            "codec_type": "video",
            "codec_time_base": "1001/48000",
            "codec_tag_string": "[0][0][0][0]",
            "codec_tag": "0x0000",
            "width": 1280,
            "height": 692,
            "coded_width": 1280,
            "coded_height": 704,
            "has_b_frames": 2,
            "sample_aspect_ratio": "1:1",
            "display_aspect_ratio": "320:173",
            "pix_fmt": "yuv420p"}

答案1

剪切完成后,应该至少有一个 I 帧来播放该部分视频,并且如果你使用-ss选项,FFmpeg 会寻找离指定剪切时间最近的 I 帧使用选项指定源-i

ffmpeg -ss 00:20:00 -i in.mkv -to 00:22:00 -c copy out.mp4

如果您指定-ss选项源(如您的示例)FFmpeg 正在输出数据中寻找 I 帧进行剪切,并且可能发生在您指定的时间内没有 I 帧的情况,因此需要重新编码输入以创建一个(因此您不能使用-c copy)。

ffprobe您可以使用以下命令检查视频文件中的 I 帧在哪里:

ffprobe -loglevel error -select_streams v:0 -show_entries packet=pts_time,flags -of csv=print_section=0 -sexagesimal in.mkv | findstr K > in.txt

此命令将创建in.txt包含标记为(关键帧)的帧的时间列表的文件K

相关内容