.wac to .wav conversion

旧巷老猫 提交于 2019-12-13 05:09:48

问题


I've been asked to sample some data in a .wac file type. I'm not familiar with this standard and there is very little on the internet with regards to this format. I got given the .wav file but I don't think it was converted correctly, in that there was a none existent of the RIFF header so no .wav reader was able to read it.

Could anyone therefore shed some light into how I could possibly convert the .wac file into a .wav file? Doing some research, I cannot seem to find a converter tool on the internet, and, MatLab does not have a module for reading in .wac data.

NOTE: I've put the tag "game-engine" because according to this website: Here it is used in the infinity game engine.


回答1:


I've come up with the following solution, however, massive thanks to @jpaari for his input.

Basically, I used sox:

sox -r 44100 -e unsigned -b 8 -c 1 input.raw output.wav

I was able to re-name the file to .raw and this worked. I'm going to update the Sample Rate to what @Aybe posted.




回答2:


Try this http://www.shsforums.net/topic/39117-ps-gui-v304/

I think Audacity can do it aswell. Also the "unity3d" tag is not quite right.



来源:https://stackoverflow.com/questions/19928357/wac-to-wav-conversion

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!