Skip to content

Instantly share code, notes, and snippets.

@konr
Created January 11, 2014 02:59
Show Gist options
  • Save konr/8366419 to your computer and use it in GitHub Desktop.
Save konr/8366419 to your computer and use it in GitHub Desktop.
.flv to .mp3 using mplayer
#!/bin/sh
for flv in $(find . -name '*flv'); do
mplayer -dumpaudio $flv -dumpfile ${flv/flv/mp3}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment