Log in

View Full Version : .M2TS File Extraction


jay123210599
12th April 2025, 13:51
How do I extract video, audio, and subtitle files from .m2ts videos? What are some tools for it?

SeeMoreDigital
12th April 2025, 14:07
How do I extract video, audio, and subtitle files from .m2ts videos? What are some tools for it?

Personally I use TSmuxer GUI (open source builds) or UsEac3To, which can both demux and create native streams.

Selur
12th April 2025, 14:53
ffmpeg should work fine too.

jay123210599
12th April 2025, 17:48
ffmpeg should work fine too.

What would be the command for it?

huhn
12th April 2025, 20:32
video:
ffmpeg -i 'input.mkv' -c:v copy .\output.xxx
audio
ffmpeg -i 'input.mkv' -c:a copy .\output.xxx

stolen from somewhere on reddit.

look here for c:a c:v and other types to copy:
https://ffmpeg.org/ffmpeg.html

Katie Boundary
17th April 2025, 01:56
What would be the command for it?

1) Right-click on the M2TS file
2) Select "Open with..."
3) Select ffindex (or whatever command-line bullshit program you want)