Installa Steam
Accedi
|
Lingua
简体中文 (cinese semplificato)
繁體中文 (cinese tradizionale)
日本語 (giapponese)
한국어 (coreano)
ไทย (tailandese)
Български (bulgaro)
Čeština (ceco)
Dansk (danese)
Deutsch (tedesco)
English (inglese)
Español - España (spagnolo - Spagna)
Español - Latinoamérica (spagnolo dell'America Latina)
Ελληνικά (greco)
Français (francese)
Indonesiano
Magyar (ungherese)
Nederlands (olandese)
Norsk (norvegese)
Polski (polacco)
Português (portoghese - Portogallo)
Português - Brasil (portoghese brasiliano)
Română (rumeno)
Русский (russo)
Suomi (finlandese)
Svenska (svedese)
Türkçe (turco)
Tiếng Việt (vietnamita)
Українська (ucraino)
Segnala un problema nella traduzione
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 :)