我有一个测试场景,其中有一个 M2TS 文件(称为1.m2ts
),其中包含一个视频轨道和多个音频轨道。其中一首音轨的不同寻常之处在于它的bluray_pcm
格式。
在第一步中,我想创建一个新的 M2TS 文件(称为2.m2ts
),1.m2ts
其中包含除删除的轨道之外的所有音轨bluray_pcm
。
在第二步中,我想转换2.m2ts
为MKV格式(文件3.mkv
)。
由于 MKV 似乎无法处理曲目bluray_pcm
,因此我还在bluray_pcm
第一步中将曲目转换为普通 PCM 音频。
第一步原则上是有效的,但是 ffmpeg 把编解码器标签弄乱了。注意到它后,我研究了这个主题,发现我应该添加-map_metadata
到命令行,但不幸的是,这没有帮助。下面显示了命令行和编解码器标签的更改:
首先,我让 ffprobe 输出原始文件中的轨道数据1.m2ts
:
ffprobe -print_format json -loglevel fatal -show_streams -count_frames -i 1.m2ts > 1.json
1.json
然后有以下内容(忽略不相关的行):
{
"streams": [
{
"index": 0,
"codec_name": "mpeg2video",
"codec_long_name": "MPEG-2 video",
"profile": "Main",
"codec_type": "video",
"codec_tag_string": "HDMV",
"codec_tag": "0x564d4448",
},
{
"index": 1,
"codec_name": "ac3",
"codec_long_name": "ATSC A/52A (AC-3)",
"codec_type": "audio",
"codec_tag_string": "AC-3",
"codec_tag": "0x332d4341",
"sample_fmt": "fltp",
},
{
"index": 2,
"codec_name": "ac3",
"codec_long_name": "ATSC A/52A (AC-3)",
"codec_type": "audio",
"codec_tag_string": "AC-3",
"codec_tag": "0x332d4341",
"sample_fmt": "fltp",
},
{
"index": 3,
"codec_name": "pcm_bluray",
"codec_long_name": "PCM signed 16|20|24-bit big-endian for Blu-ray media",
"codec_type": "audio",
"codec_tag_string": "HDMV",
"codec_tag": "0x564d4448",
"sample_fmt": "s16",
},
]
}
到目前为止,一切都很好。正如我们所看到的,bluray_pcm
轨道是轨道 3。
然后我2.m2ts
按照上面的描述创建:
ffmpeg -analyzeduration 100G -probesize 100G -fix_sub_duration -copyts -i 1.m2ts -map 0:0 -map 0:3 -map_metadata 0 -muxpreload 0 -muxdelay 0 -vcodec copy -acodec pcm_s16le 2.m2ts
请注意,命令行包含-map_metadata 0
.
该命令执行没有错误,因此是时候2.m2ts
使用上面所示的方法进行分析了:
ffprobe -print_format json -loglevel fatal -show_streams -count_frames -i 2.m2ts > 2.json
2.json
然后包含(再次,保留不相关的部分):
{
"streams": [
{
"index": 0,
"codec_name": "mpeg2video",
"codec_long_name": "MPEG-2 video",
"profile": "Main",
"codec_type": "video",
"codec_tag_string": "[2][0][0][0]",
"codec_tag": "0x0002",
},
{
"index": 1,
"codec_name": "bin_data",
"codec_long_name": "binary data",
"codec_type": "data",
"codec_tag_string": "[6][0][0][0]",
"codec_tag": "0x0006",
}
]
}
所以现在的音频编解码器是“bin_data”。此外,视频轨道的codec_tag_string
和 也codec_tag
很混乱。
因此,当尝试转换2.m2ts
为时3.mkv
,会发生以下情况(同样,忽略不相关的行):
ffmpeg.exe" -i 2.m2ts -map 0:0 -map 0:1 -codec copy 3.mkv
Input #0, mpegts, from '2.m2ts':
Duration: 01:46:24.34, start: 11.650667, bitrate: 22115 kb/s
Program 1
Metadata:
service_name : Service01
service_provider: FFmpeg
Stream #0:0[0x1011]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p(tv, progressive), 1920x1080 [SAR 1:1 DAR 16:9], 23.98 fps, 23.98 tbr, 90k tbn
Side data:
cpb: bitrate max/min/avg: 30000000/0/0 buffer size: 9781248 vbv_delay: N/A
Stream #0:1[0x1100]: Data: bin_data ([6][0][0][0] / 0x0006)
File '3.mkv' already exists. Overwrite? [y/N] y
[matroska @ 000001f6cfd4d340] Tag [6][0][0][0] incompatible with output codec id '98314' ([0][0][0][0])
[out#0/matroska @ 000001f6cfd25dc0] Could not write header (incorrect codec parameters ?): Invalid data found when processing input
Error opening output file 3.mkv.
Error opening output files: Invalid data found when processing input
现在我想知道我的错误在哪里。我在步骤 1 中使用的过程(删除除 之外的所有音轨bluray_pcm track
并将该音轨转换为普通 PCM)分别在多个教程和问题与解答中进行了描述。
为什么它会弄乱视频轨道元数据也超出了我的视野(尽管这显然没有负面影响)。
我到底需要做什么才能将bluray_pcm
M2TS 文件中的曲目转换为普通 PCM,以便之后可以进一步处理生成的 M2TS 文件,以及如何防止 ffmpeg 更改编解码器标签?
正如 @Rotem 在评论中指出的,MPEG-TS 不直接支持 LPCM。但是,您可以使用 将其打包为 SMPTE ST 302 流
-acodec s302m -strict -2
。