I have a command line statement which works perfectly when manually typing it into the console, however, when I put it in a bat file it doesn't work.

for %f in (*.flac) do ffmpeg -i "%f" -acodec alac "%~nf.m4a"

Here is the error message when I try running the bat file

The following usage of the path operator in batch-parameter
substitution is invalid: %~nf.m4a"

Is there any way to fix this? The statement converts flac files to alac files using the program ffmpeg.

link|improve this question

73% accept rate
feedback

1 Answer

up vote 3 down vote accepted

When batch files are interpreted %% is replaced with %, so your solution would be to replace %f with %%f

link|improve this answer
1  
Thanks for that, I had to replace all the % signs, not just the %f. – Michael Nov 10 '11 at 5:08
@Michael: No, only the parameters of FOR-LOOPs have to preceded with two percents – jeb Nov 10 '11 at 10:00
@jeb: Aren't all the %'s in that statement in the for loop? – Michael Nov 13 '11 at 6:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.