有人知道一个应用程序,它允许我将m2ts文件转换为mkv或其他格式吗?最好是允许我直接转换它的东西,而不是转换整个蓝光光盘。hddump没有工作,因为它不只是转换m2ts文件,而且内容在我实际挂载的.iso上。
发布于 2011-02-26 14:53:39
使用手制动器,您可以转换所有类型的文件:
得到支持的来源:
产出:
发布于 2011-02-26 14:55:08
我认为ffmpeg将完成这项工作,它非常简单地复制所有流并将它们输出到一个mkv容器中。没有信息丢失/重新编码。
ffmpeg -i input.mt2s -scodec copy -acodec copy -vcodec copy -f matroska input.mkv
发布于 2013-12-14 23:13:56
最容易使用的工具是mkvmerge
,它是mkvtoolnix
包的一部分。要转换您的文件:
sudo apt-get install mkvtoolnix
mkvmerge -o output.mkv input.m2ts
示例输出:
mkvmerge v6.1.0 ('Old Devil') built on Mar 4 2013 20:24:55
'input.m2ts': Using the demultiplexer for the format 'MPEG transport stream'.
'input.m2ts' track 0: Using the output module for the format 'AVC/h.264'.
'input.m2ts' track 1: Using the output module for the format 'AC3'.
'input.m2ts' track 2: Using the output module for the format 'PGS'.
The file 'output.mkv' has been opened for writing.
'input.m2ts' track 0: Extracted the aspect ratio information from the MPEG-4
layer 10 (AVC) video data and set the display dimensions to 1920/1080.
Progress: 100%
The cue entries (the index) are being written...
Muxing took 4 minutes 20 seconds.
https://askubuntu.com/questions/28191
复制相似问题