HydrogenAudio

Lossless Audio Compression => FLAC => Topic started by: XeR0 on 2011-06-24 20:20:01

Title: FLACCL multiple files command
Post by: XeR0 on 2011-06-24 20:20:01
Hey everyone. I've tried to use FLACCL command-line to encode some WAV files but I find it quite annoying to have to type in each individual file name. I tried using the wildcard command (for Windows command prompt):
Code: [Select]
FOR %G IN "C:\TEST\*.wav" DO "C:\Users\....\Desktop\flaccl\flaccl.exe" -11 --verify "%G"

and I end up with this message:
Code: [Select]
"C:\TEST\*.wav" was unexpected at this time.

In other words, it's unexpected at ALL times and won't do what I want it to unless I figure out exactly what's wrong with the command I'm typing in.

It'll suck if there's no other way than to simply type in each file name every single time. The same goes for the Flake command-line. Any idea what I'm doing wrong?
Title: FLACCL multiple files command
Post by: lvqcl on 2011-06-24 20:24:43
for %G in (C:\TEST\*.wav) do ...

BTW -11 generates FLAC files that are out of subset.
Title: FLACCL multiple files command
Post by: XeR0 on 2011-06-24 20:39:25
for %G in (C:\TEST\*.wav) do ...

BTW -11 generates FLAC files that are out of subset.

Thanks. Works perfectly.