Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
forfiles /p "C:\Users\JaCoB\Downloads\XWM - WAV Conversion-32075-0-1" /m *.xwm /c "cmd /c xwmaencode.exe @file @fname.wav"
```
@echo starting conversion...
forfiles /s /m *.xWMA /c "cmd /c xWMAEncode @file @fname.wav"
@echo Done, enjoy the music!
```
For example:
xwmaencode.exe 1.xwm 1.mp3
xwmaencode.exe 2.xwm 2.mp3
xwmaencode.exe 3.xwm 3.mp3
xwmaencode.exe 4.xwm 4.mp3
xwmaencode.exe 5.xwm 5.mp3
xwmaencode.exe 6.xwm 6.mp3
xwmaencode.exe 7.xwm 7.mp3
xwmaencode.exe 8.xwm 8.mp3
xwmaencode.exe 9.xwm 9.mp3
xwmaencode.exe 10.xwm 10.mp3
I am not sure though if the application itself now has inbuilt support for wma (it didn't last year), or if it is a plugin. If it is one of my plugins it is most likely vgmstream: http://www.foobar2000.org/components/view/foo_input_vgmstream
Create a text document and change the extension to .cmd (in the folder with all the music files), then paste this:
for %%v in (*.xwm) do (
xWMAEncode.exe "%%v" "%%v.wma"
)
Run the file and it's done :)