Compare commits

...

2 Commits

Author SHA1 Message Date
d8a4ca6aa1 Add comment to fix flac script 2026-05-21 11:28:38 +00:00
c3ab16ff9c Add script to fix flac file 2026-05-21 11:28:00 +00:00

View File

@@ -0,0 +1,13 @@
#!/bin/bash
# script to fix where flac tags are set correctly but navidrome still sees them as having [Unknown album] and [Unknown artist]
echo "Fixing flac file $1"
echo "running command ffmpeg -i $1 -c:a flac -map_metadata 0 "fixed.flac""
ffmpeg -i $1 -c:a flac -map_metadata 0 "fixed.flac"
echo "moving fixed.flac to $1"
mv "fixed.flac" $1