Hi,<br><br>I'm using windows and I wanted to make a batch file for encoding of wav files to flac.<br>It encodes all wav files in a directory to flac and write all flac output to a file, after that it opens that file in wordpad.
<br><br>Here is the batch file:<br><br>@ECHO OFF<br>FOR %1 IN (*.wav) DO flac -V --best "%1" 2<< FLAC_output.txt<br>START /MAX wordpad FLAC_output.txt<br>EXIT<br><br>The problem now is: the line 'FOR %1 IN (*.wav) DO flac -V --best "%1" 2<< FLAC_output.txt' works perfectly when entered manually in a command line window, BUT when put in a batch file, this line doesn't do anything at all :-S
<br><br>Maybe some windows users can tell me what I'm doing wrong here?<br><br>thx!!<br>