ffmpeg

ffmpeg

有谁知道有哪个应用程序可以让我把 m2ts 文件转换成 mkv 或其他格式吗?最好是能让我直接转换,而不是转换整张蓝光光盘。hddump 不起作用,因为它不能只转换 m2ts 文件,而且内容都在我虚拟安装的 .iso 上。

答案1

ffmpeg 安装 ffmpeg

我认为 ffmpeg 可以完成这项工作,它只是简单地复制所有流并将它们输出到 mkv 容器中。不会丢失/重新编码任何信息。

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

答案2

手刹您可以转换所有类型的文件:

支持的来源:

  • 任何 DVD 或蓝光类来源:VIDEO_TS 文件夹、DVD 映像、真实 DVD 或蓝光(未加密 - 不支持删除复制保护)以及一些 .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)”

答案3

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

相关内容