I am very new to AutoIt. I have searched for the answer for my question and read the FAQ's but still need help...
I run a command from the Windows command prompt to join multiple .vob files into a single .mpg file. The command looks something like this:
copy /D Z:\moviedirectory\Video_ts\*.vob Z:\moviename.mpg
This works for me, but I want to create an autoit script to make this process quicker.
I cannot find an autoit command that properly joins the .vob files together. I have tried the filecopy and filemove commands, but they both only take the first .VOB file and rename it to moviename.mpg
Is there an autoit command that will join files together like the copy command does? What is it?
Here is my script so far...
$moviename = InputBox ( "Creating MPG file", "What is the name of the directory containing the .VOB files?")
FileCopy( "Z:\DVD's-2\temp\"&$moviename&"\VIDEO_TS\*.VOB", "Z:\DVD's\"&$moviename&".mpg", 0)