Let's imagine I have 100 mp3-files, and I want to decode them back to wavs. This can be done with the following command line
Code: Select all
lame.exe --decode in_filename out_filenameCode: Select all
lame.exe --decode "$N" "$I\$B.wav"I was sure the commands are executed not simultaneous, but one after one. Yes, I know, I can modify the Command Script like this:
Code: Select all
start /w d:\tools\lame\lame.exe --decode "$N" "$I\$B.wav"Let me suggest to add an additiona checkbox to the Script Wizard dialog window: 'Simultaneous'. When this box is checked, the commands are executed simultaneously, when unchecked (default) the commands are executed one after one.
What do you think about this?


