Повреждённые файлы

This page explains music files with corrupted data.

If Tagger is unable to read a file, it will be ignored and a dialog will be displayed listing corrupted files for you to manage and fix accordingly.

В этом окне будет предложена опция, при которой Tagger выполнит команду, которая, возможно, исправит повреждённый файл.

Invalid Data

An invalid tag header or junk data in a file can cause issues when reading information about a file and even cause playback issues. Some websites add extra junk data in files which in turn causes corruption.

FFmpeg can be used to fix corruption issues. Run the following command to re-encode a file's tag and remove junk data:

ffmpeg -i in.mp3 out.mp3

where in.mp3 is the file path of the corrupted file and out.mp3 is the path to export the re-encoded file.

You can also use fre:ac to re-encode files without convertion to another format.

Неправильное изображение обложки

Неправильное или повреждённое встроенное изображение обложки альбома может создавать проблемы при отображении музыки в Tagger.

Вы можете использовать FFmpeg для исправления проблемных обложек. Выполните следующую команду для удаления обложки из файла:

ffmpeg -map 0:a -c:a copy -map_metadata -1 -i исходный.mp3 новый.mp3

where in.mp3 is the file path of the corrupted file and out.mp3 is the path to export the re-encoded file.