sirt
9th April 2012, 16:07
Hi everybody,
I have several questions about compressions :
1) Let's say I own some WAVS extracted from some of my personal audio cds. Imagine I don't want to use EAC or any stuff like that. I want to encode the WAVS in MP3 VBR. Then, I got LAME.EXE (v 3.99) and I created a bat file with the code :
"C:\lame.exe" -V 0 -q O -of %1
I just drag the WAV in it and I obtain a MP3 VBR. Am I doing that correctly ? Is that comand line enough to get what I want ?
2) Let's say I own some DTS audio. I would like to encode it to WAV but I don't know how. Is there some comand-line that I could use trough a BAT file to do this ?
3) Sometimes I need to pass from WAV to FLAC so I decided to use that comand line trough a BAT file again :
"C\\flac.exe" for f in *.wav; do flac "$f" ; done
I think that's okay but how would you do to pass from a WAV to a FLAC ? I know I could simply work with EAC and use flac.exe from the beginning, but I'm just curious.
I have several questions about compressions :
1) Let's say I own some WAVS extracted from some of my personal audio cds. Imagine I don't want to use EAC or any stuff like that. I want to encode the WAVS in MP3 VBR. Then, I got LAME.EXE (v 3.99) and I created a bat file with the code :
"C:\lame.exe" -V 0 -q O -of %1
I just drag the WAV in it and I obtain a MP3 VBR. Am I doing that correctly ? Is that comand line enough to get what I want ?
2) Let's say I own some DTS audio. I would like to encode it to WAV but I don't know how. Is there some comand-line that I could use trough a BAT file to do this ?
3) Sometimes I need to pass from WAV to FLAC so I decided to use that comand line trough a BAT file again :
"C\\flac.exe" for f in *.wav; do flac "$f" ; done
I think that's okay but how would you do to pass from a WAV to a FLAC ? I know I could simply work with EAC and use flac.exe from the beginning, but I'm just curious.