10-23-2024, 04:51 PM
Well, for starters, there's the flac decoder itself. It's present in every moOde install.
From the man page,
So, from the command line, try flac wilth the test option -t for a quick check. You should get back something like
There's also the analyze option -a (which may need to be run as root) which is like the test option but also output an analysis file.
If your files pass this test then there's likely something really cockeyed about how the audio encoding was done (RIFF WAVE, Wave64, RF64, AIFF, FLAC or Ogg FLAC).
Regards,
Kent
From the man page,
Quote: In test mode, flac acts just like in decode mode, except no output file
is written. Both decode and test modes detect errors in the stream,
but they also detect when the MD5 signature of the decoded audio does
not match the stored MD5 signature, even when the bitstream is valid.
So, from the command line, try flac wilth the test option -t for a quick check. You should get back something like
Code:
rho@sunroom:~ $ flac -t /mnt/SDCARD/'Stereo Test'/LRMonoPhase4.flac
flac 1.4.2
Copyright (C) 2000-2009 Josh Coalson, 2011-2022 Xiph.Org Foundation
flac comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
welcome to redistribute it under certain conditions. Type `flac' for details.
LRMonoPhase4.flac: ok
There's also the analyze option -a (which may need to be run as root) which is like the test option but also output an analysis file.
If your files pass this test then there's likely something really cockeyed about how the audio encoding was done (RIFF WAVE, Wave64, RF64, AIFF, FLAC or Ogg FLAC).
Regards,
Kent