The QuickTime converter batch exe which is located in Codec Central wll not work with the new QuickTime -v7. This exe is an AutoIt -v2 created file.
I have updated the script's source to the new version of AutoIt (-v3) and made it work with the new QuickTime.
Since I can't attach a binary to this message, here is the source for the new version:
FileCopy ( $CmdLine[1] , "C:\temp.wav" )
run ( "c:\Program Files\QuickTime\QuickTimePlayer.exe c:\temp.wav" )
WinWait ( "temp.wav" )
WinActivate ( "temp.wav" )
Send ( "^e" )
WinWaitActive ( "Save exported file as:" )
Send ( "c:\temp.mp4{Enter}" )
WinWaitClose ( "Progress" )
WinActivate ( "temp.wav" )
Send ( "^w" )
WinWaitClose ( "temp.wav" )
FileCopy ( "C:\temp.mp4" , $CmdLine[2] )
FileDelete ( "C:\temp.mp4" )
FileDelete ( "C:\temp.wav" )
You'll need to download the AutoIt -v3 from here http://www.autoitscript.com/autoit3/downloads.php and run this script through the Aut2exe prog and move the resultant file to <dbpowerampHOME>\Compression\QuickTime M4a (CLI)\QTBatch.exe.
If you haven't installed QuickTime in the default location, edit line 2 of the file to reflect it's location. Also, you'll still need to install the old setup first.
If any of this isn't clear, send me a message...
Tarkus Shakti
I have updated the script's source to the new version of AutoIt (-v3) and made it work with the new QuickTime.
Since I can't attach a binary to this message, here is the source for the new version:
FileCopy ( $CmdLine[1] , "C:\temp.wav" )
run ( "c:\Program Files\QuickTime\QuickTimePlayer.exe c:\temp.wav" )
WinWait ( "temp.wav" )
WinActivate ( "temp.wav" )
Send ( "^e" )
WinWaitActive ( "Save exported file as:" )
Send ( "c:\temp.mp4{Enter}" )
WinWaitClose ( "Progress" )
WinActivate ( "temp.wav" )
Send ( "^w" )
WinWaitClose ( "temp.wav" )
FileCopy ( "C:\temp.mp4" , $CmdLine[2] )
FileDelete ( "C:\temp.mp4" )
FileDelete ( "C:\temp.wav" )
You'll need to download the AutoIt -v3 from here http://www.autoitscript.com/autoit3/downloads.php and run this script through the Aut2exe prog and move the resultant file to <dbpowerampHOME>\Compression\QuickTime M4a (CLI)\QTBatch.exe.
If you haven't installed QuickTime in the default location, edit line 2 of the file to reflect it's location. Also, you'll still need to install the old setup first.
If any of this isn't clear, send me a message...
Tarkus Shakti
Comment