how you can convert the MPEG2 transport stream files, obtained from gbpvr in mpeg2 program stream files in the shortest possible time, by entering the correct command line in post processing.bat?
probably the fastest would be to use a special version of ffmpeg called ffmpeg_mpgmux and just remux it to a new file...
ffmpeg.exe -y -i %1 -vcodec copy -acodec copy "%~dpn1tmp.%~x1"
2010-01-19, 02:00 AM (This post was last modified: 2010-01-19, 02:14 AM by pBS.)
yea, but this one does it with speed... i didn't think so either till someone pointed it out to me...and tests confirmed it...mpgmux one did remuxing *much* faster than normal ffmpeg..
[it's optimized solely for remuxing] 2-3x faster
but regular ffmpeg works fine with same cmdline...
ver .5 is still about 100fps slower..[300 for mpgmux-200 for reg ffmpeg .5]
i use "ffmpeg_MPGMUX" -y -i filein.ts -vcodec copy -acodec copy -f vob fileout.mpg