millennium icon indicating copy to clipboard operation
millennium copied to clipboard

Voiceware decoding conversion into WAV

Open digitone opened this issue 10 years ago • 3 comments

It might be a good idea to note this command into the documentation, it outputs a standard WAV file.

sox -t raw -L -r 8421 -e signed -b 16 -c 1 pcm0 pcm0.wav speed 0.92

digitone avatar Feb 02 '15 05:02 digitone

This is a quick bash script to convert all the files in the current folder:

#!/bin/bash
for file in ./*
do
  sox -t raw -L -r 8421 -e signed -b 16 -c 1 $file $file.wav speed 0.92
done

digitone avatar Feb 02 '15 05:02 digitone

Here's a zip of all the prompts converted into WAV:

https://mega.co.nz/#!6pxnTLSa!d2AXSfPrp4CeU940I7fxxmC3YYPFAWLRBrxbLWL3V3E

digitone avatar Feb 02 '15 05:02 digitone

The link is dead

RyanTheInkling avatar May 17 '20 15:05 RyanTheInkling