Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: wmcmd syntax (Read 3828 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

wmcmd syntax

Hi,

I can't find the syntax I need to use to decode wma files to wav using the wmcmd.vbs command line script.

Any help would be greatly appreciated!

Thanks!

mrgou


wmcmd syntax

Reply #2
Quote
I don't think it's possible.

Maybe using -a_codec PCM -input meh.wma -output meh.wav, but I didn't test.
[a href="index.php?act=findpost&pid=347605"][{POST_SNAPBACK}][/a]


No, that's not working. I believe the container is still wma, although it's uncompressed.

If that's not possible with wmcmd, is there any command line decoder from WMA to WAV?


wmcmd syntax

Reply #4
try mplayer instead.
mplayer can even decode WMA lossless and WMA pro.

Code: [Select]
@echo off
cd "%userprofile%\desktop"
"C:\path to\mplayer.exe" -v -ao pcm:file="%~n1.wav" %1
pause

save the code above to a batch file,
after mplayer finish decoding, a wav file will appear on your desktop.