Converting RAW audio data to WAV with scripting

后端 未结 7 1731
梦毁少年i
梦毁少年i 2020-12-15 18:43

I have a large number of .RAW audio files (unsigned 8-bit PCM with no-endianness) which I want to convert to .WAV files. What command-line tool (windows or linux) can I use

7条回答
  •  独厮守ぢ
    2020-12-15 18:53

    I was pointed to SoX by a friend, which did the trick. The syntax used was sox -r 44100 -e unsigned -b 8 -c 1

提交回复
热议问题