Batch-converting ADPCM WAV produced 0 byte file
Posted: 12 Apr 2012 19:16
I use VLC v1.0.3. I have ADPCM WAV files that can only play in VLC. I want to batch-convert it to MP3 so I can play it in all player and also in games.
When I converted it using this command:
It results in 0 byte files.
What's wrong with my command and what's the solution?
Thanks a lot before.
When I converted it using this command:
Code: Select all
for %%a in (*.wav) do "C:\Program Files\VideoLAN\VLC\vlc" -I dummy -vvv "%%a" --sout=#transcode{acodec=mp3,ab=128}:standard{access=file,mux=raw,dst="%%a".mp3} vlc://quit
What's wrong with my command and what's the solution?
Thanks a lot before.