arne;222718 Wrote: > Nice tool! > The decoded file is equal to the WMP/Chronotron output. Seems to work > well. It would be close to perfect if it supported the following > features: > 1) batch processing of all files in a folder > 2) "scan-only-mode" without file output: this way you can just check > your files for hdcd information > > Anyway, thanks a lot for your efforts
Thanks for doing to comparision, nice to know that it's working on a good range of test samples. As for 1,2, I'm afriad I'm of the opinion that such functionality really belongs in wrapper scripts, and the the core application should be kept as simple as possible. I've very little experience with DOS batch files, but a bit of research (http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/batch.mspx?mfr=true) suggests that the following (untested) should do what you want: 1) for %f in (*.wav) do hdcd.exe <"%f" >"hdcd_%f" 2) hdcd <myfile.wav >NUL: You may want to be careful with the first if you run it multiple times, as on the second pass it'll also attempt to process the 24bit files from the first run. Regards, Chris -- cjk32 ------------------------------------------------------------------------ cjk32's Profile: http://forums.slimdevices.com/member.php?userid=5151 View this thread: http://forums.slimdevices.com/showthread.php?t=32967 _______________________________________________ audiophiles mailing list [email protected] http://lists.slimdevices.com/lists/listinfo/audiophiles
