Am 28.09.2018 um 18:30 schrieb esikcalabr...@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@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

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

Reply via email to