Skip to content

Instantly share code, notes, and snippets.

@bmcculley
Created March 18, 2015 23:09
Show Gist options
  • Save bmcculley/238146ff8b3de05bf73a to your computer and use it in GitHub Desktop.
Save bmcculley/238146ff8b3de05bf73a to your computer and use it in GitHub Desktop.
convert from mp4 to mp3
#!/bin/bash
for song in *.mp4
do
title=`echo "$song" | sed -e "s/.mp4$//g"`
ffmpeg -i "$song" -vn -ar 44100 -ac 2 -ab 192k -f mp3 "$title.mp3"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment