답변:
수동 브레이크 를 사용하면 모든 종류의 파일을 변환 할 수 있습니다.
지원되는 출처 :
- 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 만 해당) "
가장 쉬운 도구 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.