Инсталирайте 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)
Украински (Українська)
Докладване на проблем с превода
Here you go.
Dammit! The track was quite close. Here is the specific part. Starting at 13:10 on this link - https://www.youtube.com/watch?v=TDWHOk7BrOY
Also, I used this tool called "oggdecV1.9.7.zip", but the site where I got it from is down, you could try to search for yourself tho.
Maybe you can halp me. I find this script, but i dont know, what i can use this. This program always crashed. I also use someone script, but i dont understand, what i must wrote in "path/to/*.sbao/files/", i mean i try wrote correct path, but program always crashed! Please, hapl me.
i can give you script, what i use:
The Script
The MS-DOS batch script:
[plain]
FOR /R “path/to/*.sbao/files/” %%G IN (*.sbao) DO oggdec.exe “%%G” –stdout | lame.exe -V0 -h –vbr-new – “%%G.mp3”
[/plain]
Copy/paste the above code into a text editor and save the file. You can use any filename you want but make sure you save it with a “.bat” extension. E.g. sbao2mp3.bat
Make sure to change the path/to/*.sbao/files/ portion to the directory path where you’ve extracted the *.sbao files.
Don’t remove any of the quotes! They’re needed in case your directory names contain spaces.
What the script does is pipe the decoded output from oggdec.exe via STDOUT directly into LAME, which then converts it into .mp3 format.
If you just want to convert the *.sbao files to .wav format, you can use this shorter script.
[plain]
FOR /R “your/path/to/*.sbao/files/” %%G IN (*.sbao) DO oggdec.exe “%%G” -w
[/plain]