Skip to content

Instantly share code, notes, and snippets.

@T31337
Created July 1, 2016 16:07
Show Gist options
  • Save T31337/0540765fe38aab19e80227651404520a to your computer and use it in GitHub Desktop.
Save T31337/0540765fe38aab19e80227651404520a to your computer and use it in GitHub Desktop.
echo FFMPEG MP3 To WAV Converter
echo -----------------------------
echo Usage: ./ffmpeg mp3 newfile
echo -----------------------------
mp3=$1
wav=$2
ffmpeg -i $mp3 -acodec pcm_u8 -ar 22050 $wav.wav
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment