Most of my mp3-Files can not be played with audiere. I debugged the code and could see that audiere tries to play the id3 tags. Because most id3v2 tags are stored at the beginning of an mp3-file I made a quick and dirty corretion:
Changes in INPUT_MP3.CPP:
51: readID3v2Tags(&fpos);
52: m_file->seek(fpos, File::BEGIN);
356: void
357: MP3InputStream::readID3v2Tags(int *fpos) {.