Skip to content

Instantly share code, notes, and snippets.

@kane-thornwyrd
Created April 30, 2020 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kane-thornwyrd/4d2161eab7f1f3128a30146d8c35c29f to your computer and use it in GitHub Desktop.
Save kane-thornwyrd/4d2161eab7f1f3128a30146d8c35c29f to your computer and use it in GitHub Desktop.
Convert all the webm files in the current folder into ogg audio files…
#! /bin/sh
\ls -1 *.webm | xargs -I % echo "%" | sed -e 's/\.webm$//i' | xargs -I % ffmpeg -i "%.webm" -threads $(nproc --ignore=2) -vn -y "%.ogg"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment