Skip to content

Instantly share code, notes, and snippets.

@MartinMSPedersen
Created October 5, 2020 12:19
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 MartinMSPedersen/d3eb34751aaff91a11b93cab1b5c117d to your computer and use it in GitHub Desktop.
Save MartinMSPedersen/d3eb34751aaff91a11b93cab1b5c117d to your computer and use it in GitHub Desktop.
Add image to flac-files
function img2flac() {
img="$1"
shift
for fname in $*
do
metaflac --import-picture-from="$img" "$fname"
done
}
@MartinMSPedersen
Copy link
Author

Add a jpg/png/gif to a lot of flac-files.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment