P
Pascal Herczog
I would like to add a right mouse click option on my MP3 files to decode
them to WAV files, by adding the following command to the MP3 file type
association (from the Explorer -> Folder Options -> File Types):
"....Lame.exe" --decode "%1" "%~n1".wav
I've used the syntax for batch files to describe what I want, which is to
define the output file name as being the input file name without the .mp3
extension, since Lame automatically appends .wav to whatever input file name
is given if you don't specify the output name. (So I'd end up with
<name>.mp3.wav as the output if I only specify "%1"
Of course, I can't get the above syntax to work for commands associated with
file types. Is there any description of what syntax is usable, or will I
have to reference a batch file to do this for me?
Thanks,
Pascal
them to WAV files, by adding the following command to the MP3 file type
association (from the Explorer -> Folder Options -> File Types):
"....Lame.exe" --decode "%1" "%~n1".wav
I've used the syntax for batch files to describe what I want, which is to
define the output file name as being the input file name without the .mp3
extension, since Lame automatically appends .wav to whatever input file name
is given if you don't specify the output name. (So I'd end up with
<name>.mp3.wav as the output if I only specify "%1"
Of course, I can't get the above syntax to work for commands associated with
file types. Is there any description of what syntax is usable, or will I
have to reference a batch file to do this for me?
Thanks,
Pascal