Skip to content

Instantly share code, notes, and snippets.

@pwqw
Last active January 4, 2017 23:03
Show Gist options
  • Save pwqw/eab5aca81af8a55a27a20e5997716aa3 to your computer and use it in GitHub Desktop.
Save pwqw/eab5aca81af8a55a27a20e5997716aa3 to your computer and use it in GitHub Desktop.
Search and convert all webm videos to mp3 audio files
#!/bin/bash
# requires ffmpeg
# apt install ffmpeg
find . -type f -iname "*.webm" -exec bash -c 'FILE="$1"; ffmpeg -i "${FILE}" -vn -ab 320k -ar 44100 -y "${FILE%.webm}.mp3";' _ '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment