Re: [FFmpeg-user] Batch file to convert New Edit

2018-09-29 Thread Francois Visagie
tch file, AND returning control to the calling batch file. > -Original Message- > From: ffmpeg-user [mailto:ffmpeg-user-boun...@ffmpeg.org] On Behalf Of > esikcalabr...@verizon.net > Sent: 28 September 2018 17:31 > To: 'FFmpeg user questions' > Subject: [FFmpeg-us

Re: [FFmpeg-user] Batch file to convert

2018-09-29 Thread Moritz Barsnick
On Fri, Sep 28, 2018 at 09:20:22 -0400, esikcalabr...@verizon.net wrote: > C:\Users\Kirk Calabrese\Desktop>CALL "C:\ffmpeg\bin\ffmpeg.exe" > "C:\ffmpeg\bin\ffmpeg -i robinsonconverted.wav" > ffmpeg version N-92058-gefb65abedf Copyright (c) 2000-2018 the FFmpeg > developers [...] > Output #0, wav

Re: [FFmpeg-user] Batch file to convert New Edit

2018-09-28 Thread esikcalabrese
@ffmpeg.org Subject: Re: [FFmpeg-user] Batch file to convert New Edit 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 outp

Re: [FFmpeg-user] Batch file to convert New Edit

2018-09-28 Thread Michael Koch
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% %outputfile

[FFmpeg-user] Batch file to convert New Edit

2018-09-28 Thread esikcalabrese
Press any key to continue . . . Kirk Calabrese, MA,CMT, Network+ Certified Professional IT Consultant -Original Message- From: ffmpeg-user On Behalf Of Michael Koch Sent: Friday, September 28, 2018 9:47 AM To: ffmpeg-user@ffmpeg.org Subject: Re: [FFmpeg-user] Batch file to convert Am 28.09.2018

Re: [FFmpeg-user] Batch file to convert

2018-09-28 Thread esikcalabrese
me%" pause Kirk Calabrese, MA,CMT, Network+ Certified Professional IT Consultant -Original Message- From: ffmpeg-user On Behalf Of Michael Koch Sent: Friday, September 28, 2018 9:47 AM To: ffmpeg-user@ffmpeg.org Subject: Re: [FFmpeg-user] Batch file to convert Am 28.09.2018 um

Re: [FFmpeg-user] Batch file to convert

2018-09-28 Thread Michael Koch
Am 28.09.2018 um 15:20 schrieb esikcalabr...@verizon.net: Thank you Michael: Based on new information, I have revised the script with the following. It seems to be working a bit better; however, still not there yet. Below is the new script with output below: set /p filename = "Enter Unconv

Re: [FFmpeg-user] Batch file to convert

2018-09-28 Thread esikcalabrese
al IT Consultant -Original Message- From: ffmpeg-user On Behalf Of Michael Koch Sent: Friday, September 28, 2018 3:20 AM To: ffmpeg-user@ffmpeg.org Subject: Re: [FFmpeg-user] Batch file to convert Am 28.09.2018 um 03:48 schrieb esikcalabr...@verizon.net: > please show the console output.

Re: [FFmpeg-user] Batch file to convert

2018-09-28 Thread Michael Koch
Am 28.09.2018 um 03:48 schrieb esikcalabr...@verizon.net: please show the console output. That's not enough. When you remove the "echo off" command, you will see much more. Also it's possible to copy and paste the content of the console window. Make a right click in the top line of the consol

Re: [FFmpeg-user] Batch file to convert

2018-09-27 Thread esikcalabrese
Kirk Calabrese, MA,CMT, Network+ Certified Professional IT Consultant -Original Message- From: ffmpeg-user On Behalf Of Michael Koch Sent: Thursday, September 27, 2018 4:59 PM To: ffmpeg-user@ffmpeg.org Subject: Re: [FFmpeg-user] Batch file to convert Am 27.09.2018 um 22:45

Re: [FFmpeg-user] Batch file to convert

2018-09-27 Thread Michael Koch
Am 27.09.2018 um 22:45 schrieb esikcalabr...@verizon.net: Yes it is there. I can convert by command line but just can't get the batch to work. I replaced : with " and the screen flashed a 2nd command prompt flashed, closed and back to enter any key to continue. Nothing happened. please sho

Re: [FFmpeg-user] Batch file to convert

2018-09-27 Thread esikcalabrese
ssional IT Consultant -Original Message- From: ffmpeg-user On Behalf Of Michael Koch Sent: Thursday, September 27, 2018 4:42 PM To: ffmpeg-user@ffmpeg.org Subject: Re: [FFmpeg-user] Batch file to convert Am 27.09.2018 um 22:30 schrieb Michael Koch: > Am 27.09.2018 um 21:33 schrieb esikcalabr..

Re: [FFmpeg-user] Batch file to convert

2018-09-27 Thread Michael Koch
Am 27.09.2018 um 22:30 schrieb Michael Koch: Am 27.09.2018 um 21:33 schrieb esikcalabr...@verizon.net: 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

Re: [FFmpeg-user] Batch file to convert

2018-09-27 Thread Michael Koch
Am 27.09.2018 um 21:33 schrieb esikcalabr...@verizon.net: 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 outputfile

[FFmpeg-user] Batch file to convert

2018-09-27 Thread esikcalabrese
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" STAR