Here is a patched version of src/meta/File_p.h :<br>Amarok was crashing when it tried to read tags in mp4 files that had an empty "composer" or "album" tag.<br><br>I added 2 tests :<br>if ( !mp4tag->itemListMap()["\xA9wrt"].toStringList().isEmpty() )<br>
                m_data.composer = strip( mp4tag->itemListMap()["\xA9wrt"].toStringList().front() );<br>if ( mp4tag->itemListMap()["disk"].toIntPair().first != NULL)<br>                disc = QString::number( mp4tag->itemListMap()["disk"].toIntPair().first );<br>
<br>Thanks for your reviews,<br>Valentin<br>