@
audiobeer
My apology for not noticing earlier. Your FLAC files are improperly tagged with metadata. Here's the output from the
file command for track 01:
Code:
kreed@T520 ~/Downloads/MoodeAudio/audiobeer/Runaljod - Gap Var Ginnunga $ file 01*
01 - µr Var Alda.flac: Audio file with ID3 version 2.3.0, contains: FLAC audio bitstream data, 16 bit, stereo, 44.1 kHz, 6144012 samples
"with ID3 version 2.3.0" is wrong for FLAC.
If you look at the first bytes of the files you'll see the magic signature is wrong as a result. Here's track 01 again:
Code:
kreed@T520 ~/Downloads/MoodeAudio/audiobeer/Runaljod - Gap Var Ginnunga $ od -c 01*|head -1
0000000 I D 3 003 \0 \0 \0 \0 $ 004 T I T 2 \0 \0
which again shows it's tagged ID3 (and TIT2 is one of the ID3 fields).
A FLAC file should not have an ID3 tag and should begin "fLaC" as in the following example of the same two commands applied to one of my tracks:
Code:
kreed@T520 ~/Music/ABCDE/flac/Marvin Gaye-Compact Command Performances 15 Greatest Hits $ file 01*
01.How Sweet It Is (To Be Loved by You).flac: FLAC audio bitstream data, 16 bit, stereo, 44.1 kHz, 7914480 samples
@T520 ~/Music/ABCDE/flac/Marvin Gaye-Compact Command Performances 15 Greatest Hits $ od -c 01*|head -1
0000000 f L a C \0 \0 \0 " 020 \0 020 \0 \0 \0 016 \0
FLAC files are tagged using a Vorbis Comment block, not ID3.
I can't say for sure that fixing the metadata tagging scheme will solve the issue but what you have is wrong in its own right.
Regards,
Kent