安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题









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 :)