Skip to content

Instantly share code, notes, and snippets.

@gunjanpatel
Created October 30, 2018 09:59
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 gunjanpatel/d42a9d5a83ed742d918011d0fb24539e to your computer and use it in GitHub Desktop.
Save gunjanpatel/d42a9d5a83ed742d918011d0fb24539e to your computer and use it in GitHub Desktop.
FFMPEG scripts

Convert WMA to MP3

for file in *.wma; do ffmpeg -i "${file}"  -acodec libmp3lame -ab 192k "${file/.wma/.mp3}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment