View Single Post
Old 11th August 2010, 16:21   #2  |  Link
nm
Registered User
 
Join Date: Mar 2005
Location: Finland
Posts: 2,641
tsMuxeR can demux TS files and it comes with a nice GUI. More generic command-line alternatives are ffmpeg and mplayer.

FFmpeg:
Code:
ffmpeg -i input.ts -an -vcodec copy -f rawvideo video.264
ffmpeg -i input.ts -vn -acodec copy -f rawvideo audio.ac3
Tracks can be chosen with -map 0:TID


MPlayer:
Code:
mplayer input.ts -dumpvideo -dumpfile video.264
mplayer input.ts -dumpaudio -dumpfile audio.ac3
Programs and tracks are chosen with -tsprog, -vid and -aid.

Last edited by nm; 11th August 2010 at 16:26.
nm is offline   Reply With Quote