Skip to content

Instantly share code, notes, and snippets.

@webdevsuperfast
Last active February 24, 2018 01:15
Show Gist options
  • Select an option

  • Save webdevsuperfast/c260b2e1b801a555e44b49ce12237b65 to your computer and use it in GitHub Desktop.

Select an option

Save webdevsuperfast/c260b2e1b801a555e44b49ce12237b65 to your computer and use it in GitHub Desktop.
Convert FLAC to MP3
#!/bin/sh
# credit from https://unix.stackexchange.com/questions/114908/bash-script-to-convert-all-flac-to-mp3-with-ffmpeg
# credit from https://stackoverflow.com/questions/26109837/convert-flac-to-mp3-with-ffmpeg-keeping-all-metadata
find . -type f -name '*.flac' -exec ffmpeg -i {} -ab 320k -map_metadata 0 -id3v2_version 3 -acodec libmp3lame {}.mp3 \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment