Skip to content

Instantly share code, notes, and snippets.

@alexhemard
Last active December 5, 2016 04:19
Show Gist options
  • Save alexhemard/48dccff8fb70d99f1b19 to your computer and use it in GitHub Desktop.
Save alexhemard/48dccff8fb70d99f1b19 to your computer and use it in GitHub Desktop.
convert all flac files in a folder to mp3
for f in *.flac; do ffmpeg -i "$f" -acodec libmp3lame -ab 320k "${f%.flac}.mp3"; done
#! /bin/bash
for f in *.7z; do 7za e "$f" -o"${f%.7z}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment