Automatic ConvertXtoDVD Script - Need a little help

Come up with a useful post-processing script? Share it here!
Post Reply
ZoomStop
Newbie
Newbie
Posts: 2
Joined: July 1st, 2010, 4:26 am

Automatic ConvertXtoDVD Script - Need a little help

Post by ZoomStop »

After saving a ton of time using auto MKV > MP4 scripts I found on here I decided to look into trying to make an auto AVI > DVD script since I saw that the program I use for this task ConvertXtoDVD.

Below is what I have so far. What I am hoping to add to it is the feature that if more than one file (movie.name.cd1.avi, movie.name.cd2.avi) then combine/join them. I usually use VirtualDub to do this which also has command line switches.
This is mainly needed so that I can pass one file to ConvertXtoDVD.

Here is what I have so far. This will be awesome if people can help get this script finished

Code: Select all

cd /d "%1"
**** THIS IS WHERE WE NEED TO JOIN FILES ***
REN *.avi 1.avi
"C:\Program Files (x86)\VSO\ConvertX\4\ConvertXtoDvd.exe" /file 1.avi /auto=true /close
Post Reply