Holy cow. It works. Many thanks Michael. You guys on the ffmpeg users group are the best!
Kirk Calabrese, MA,CMT, Network+ Certified Professional IT Consultant -----Original Message----- From: ffmpeg-user <[email protected]> On Behalf Of Michael Koch Sent: Friday, September 28, 2018 12:42 PM To: [email protected] Subject: Re: [FFmpeg-user] Batch file to convert New Edit Am 28.09.2018 um 18:30 schrieb [email protected]: > I believe I'm getting closer. It doesn't appear to get the 2nd variable. > > set /p filename="Enter Unconverted File Name: " > set /p outputfilename="Enter Converted File Name: " > CALL "C:\ffmpeg\bin\ffmpeg.exe" ffmpeg -i %filename% %outputfilename% > pause I did never use the CALL command. Try this: set /p filename="Enter Unconverted File Name: " set /p outputfilename="Enter Converted File Name: " c:\ffmpeg\bin\ffmpeg -i %filename% %outputfilename% pause Michael _______________________________________________ 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". _______________________________________________ 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".
