Any suggestions in a batch file which would take 2 user defined variables to convert an audio file? I have drafted the below which so far does not work.
echo off set /p filename = "Enter Unconverted File Name: " set /p outputfilename= "Enter Converted File Name: " cd "c:\ffmpeg\bin" START ffmpeg -i %filename% %outputfilename: pause Kirk Calabrese, MA,CMT, Network+ Certified Professional IT Consultant _______________________________________________ ffmpeg-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
