#!/bin/bash
# mp32wav
# conversion mp3 -> wav
mpg123 -b 10000 -s "$1" | sox -t raw -r 44100 -s -w -c2 - "$2"



