shithub: soundpipe

ref: 0a5f275112d871f18435dbe76294c11d5f99ecf9
dir: /test/write_wav.sh/

View raw version
#/bin/sh

# This utility is a wrapper around sox which converts 32-bit LE raw data into a 
# mono 44.1 kHz wav.

if [ "$#" -eq 0 ]
then
    echo "./write_wave.sh filename.raw"
    exit
fi

sox -t raw -c 1 -r 44100 -e floating-point -b 32 $1 out.wav

echo "converted $1 to out.wav"