I have a bunch of (S)VCDs I want to put onto DVD-Rs using the DVD-Patcher/no reencode method.
I was wondering if anyone knows of a way to use a command-line tool to list a bunch of MPEG files and have it go through and demux them and up-convert the audio to 48kHz.
Thanks!
+ Reply to Thread
Results 1 to 6 of 6
-
-
I haven't done this specific task, but I do some similar batch-processing - I extract the audio from every MPEG2 in a directory to a WAV file. I use a .bat script to automate running bbdemux (part of bbtools) and besweet. In theory besweet should be able to take the audio directly out of the MPEG, but it didn't work when I tried it (I might have just done it wrong).
For my own convenience, I have one .bat file that just processes a single MPEG passed on the command line, and another .bat to run that in a loop over all .mpg files in the current directory.
demux.bat FILE.mpg
Code:@echo off bbdmux.exe %1 0xc0 %1.mp2 besweet.exe -core( -input %1.mp2 -output %1.wav -2ch ) del %1.mp2
Code:@echo off for %%f in (*.mpg) do demux.bat %%f
-
Thanks sterno--that should give me a good start--I will just need to look up the command line args for besweet to convert to 48kHz.
coda304--The problem with TMPEG is that you need to use the GUI--I am looking for a command-line option.
Thanks,
-Kyle -
svcd2dvdmpg free version will do just that for you.
SVCD2DVD v2.5, AVI/MPEG/HDTV/AviSynth/h264->DVD, PAL->NTSC conversion.
VOB2MPG PRO, Extract mpegs from your DVDs - with you in control!
Similar Threads
-
Batch demux of DVB radio broadcasts to MP2 with Project X?
By smilingcrow in forum Video ConversionReplies: 1Last Post: 31st Jan 2011, 18:45 -
All-in-one Batch demux FLV -> mux mp4?
By gaikokujinkyofusho in forum Video ConversionReplies: 2Last Post: 19th Jan 2011, 23:34 -
Is AAC 48.0 KHz good audio for a bluray rip?
By AndyD in forum Blu-ray RippingReplies: 3Last Post: 5th Jun 2010, 18:18 -
Is a 44.1 KHz audio capture OK for a compliant DVD?
By c627627 in forum Capturing and VCRReplies: 8Last Post: 23rd Mar 2010, 04:29 -
convert audio in batch mode.....
By bolador in forum AudioReplies: 8Last Post: 15th Jun 2007, 08:33