--- mp3.py.orig 2007-10-14 20:21:56.000000000 +0200 +++ /usr/share/decibel-audio-player/src/media/mp3.py 2007-10-14 20:25:54.000000000 +0200 @@ -20,7 +20,7 @@ from tools import consts from mutagen.mp3 import MP3 -from mutagen.id3 import ID3, ID3NoHeaderError +from mutagen.id3 import ID3, ID3NoHeaderError, ID3BadCompressedData def readInfo(file): @@ -31,7 +31,7 @@ try: mp3File = ID3(file) - except ID3NoHeaderError: + except (ID3NoHeaderError, ID3BadCompressedData): return info if 'TIT2' in mp3File: info[media.NFO_TIT] = unicode(str(mp3File['TIT2']), errors='replace')