diff --git a/album-art b/album-art index e33aedd..b9a3e17 100755 --- a/album-art +++ b/album-art @@ -1,6 +1,9 @@ -#!/bin/sh +!/bin/sh cover="cover.jpg" -for file in *; do - ffmpeg -y -i $file -i $cover -map 0:a -map 1 -codec copy -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (front)" -disposition:v attached_pic $file +for file in *.flac; do + ffmpeg -i "$file" -i "$cover" -map 0:a -map 1 -codec copy -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (front)" -disposition:v attached_pic "temp-$file" + + # Replace old file with new file + mv "temp-$file" "$file" done