[FFmpeg-user] Batch file to convert New Edit

esikcalabrese at verizon.net esikcalabrese at verizon.net
Fri Sep 28 20:04:13 EEST 2018


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 <ffmpeg-user-bounces at ffmpeg.org> On Behalf Of Michael Koch
Sent: Friday, September 28, 2018 12:42 PM
To: ffmpeg-user at ffmpeg.org
Subject: Re: [FFmpeg-user] Batch file to convert New Edit

Am 28.09.2018 um 18:30 schrieb esikcalabrese at verizon.net:
> 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
ffmpeg-user at ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email ffmpeg-user-request at ffmpeg.org with subject "unsubscribe".



More information about the ffmpeg-user mailing list