如何将.m2ts转换为.mkv?


19

有谁知道允许我将m2ts文件转换为mkv或其他格式的应用程序?最好是可以让我直接转换而不是转换整个蓝光光盘的东西。hddump不能正常工作,因为它不能仅转换m2ts文件,其内容位于我实际上安装的.iso中。

Answers:


12

使用手刹,您可以转换各种文件:

支持的来源:

  • 任何DVD或类似Bluray的源:VIDEO_TS文件夹,DVD映像,真实DVD或Bluray(未加密-不支持删除复制保护),以及某些.VOB,.TS和M2TS文件
  • 它可以获取libavformat读取和libavcodec解码的大多数多媒体文件。

输出:

  • 档案格式:MP4(M4V)和MKV
  • 视频:MPEG-4(ffmpeg),H.264(x264)或Theora(libtheora)
  • 音频:AAC,CoreAudio AAC(仅OS X),MP3或Vorbis。AC-3直通,DTS直通(仅限MKV)“

谢谢,将来也很高兴。
Thomas Boxley

您还可以转换为ipod等。真的很棒:)
Alvar

请注意,Handbrake将重新编码视频,而ffmpeg只会将内部流复制到新的MKV容器中。这将更快并且不会改变质量。
Mike Pelley

除了PPA不起作用(404)。我必须手动将其添加到软件资源。
Yanick Rochon

13

ffmpeg 安装ffmpeg

我认为ffmpeg可以完成所有工作,只需复制所有流并将其输出到mkv容器中即可。没有信息丢失/重新编码。

ffmpeg -i input.mt2s -scodec copy -acodec copy -vcodec copy -f matroska input.mkv

1
你的形象坏了!:)
Alvar

10

最容易使用的工具是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.

1
没错,mosu的工具已经支持了一段时间。我建议订阅他博客的RSS提要,并从他的存储库中安装更新的版本,这些版本每1-2个月更新一次。最近,我发现他们似乎并不支持lpcm。
LiveWireBT 2014年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.