habemus писал(а):
71560428kuts
Далеко не все

И проблемы выявляются только при конвертации или проверке, на воспроизведение в большинстве случаев не влияет (или не слышно). И в других ветках люди отнюдь не молчат. Релизер здесь ни при чем (кроме одной раздачи) - проблемы тянутся из магазина.
True. To fix these files, one must re-encode the flac files. The standard flac command line tool has an embedded safety switch designed to process data through corruption instead of giving up. One will force -F a re-encoding of the flac files and generate *wav files. Then the wav files can be flac *wav back to flac and tested. Here's the simple steps:>
flac -F -d *.flac
flac *wav
on the 'fixed' flac files (not the original flac files!) test this way:
flac -t *.flac
What the output means:>
*** ok: The file was repaired perfectly and contains no errors (this is what I obtained)
*** Got error...: The tool will print the exact location (in samples) of any remaining corruption.
Bear in mind, when batch converting from wav to flac or flac back to wav, to convert a whole directory of FLAC files to WAV properly without them conflicting with each other, you must use a loop so flac processes them one by one. Run this command:>
for f in *.flac; do flac -d "$f"; done
or:>
for f in *.wav; do flac "$f"; done
hope this helps...
After the `repair` these files sound and perform wonderfully... thanks so much for the release!