Skip to content

Instantly share code, notes, and snippets.

@tbennett6421
Created September 20, 2021 04:21
Show Gist options
  • Save tbennett6421/3b5042f8422940b342f6a1f5864d918d to your computer and use it in GitHub Desktop.
Save tbennett6421/3b5042f8422940b342f6a1f5864d918d to your computer and use it in GitHub Desktop.
Commands
find . -name "*.flac" -exec ffmpeg -i {} -ab 320k -map_metadata 0 -id3v2_version 3 {}.mp3 \;
find . -name "*.mp3" -exec mv {} ~/new_folder/ \;
find . -name "*.flac" -print
find . -name "*.flac" -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment