Kodi Community Forum
Exclude mp3 files if cue sheet is present? - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Kodi Application (https://forum.kodi.tv/forumdisplay.php?fid=93)
+--- Thread: Exclude mp3 files if cue sheet is present? (/showthread.php?tid=8708)



- Timon79 - 2005-01-02

hi,

if i add a music folder (containing one mp3 file and the corresponding cue sheet) to my playlist, i want to exclude the mp3 file from the playlist (because the songs are already added by the cue sheet to the list).

i already tried here:
Quote:playlist.cpp
void cplaylist::add(const cplaylistitem& item)
{
       m_vecitems.push_back(item);
}

but it doesn't work. can somebody help where to start?

chers timon


- Timon79 - 2005-01-02

found it. if someone is interested:

void cguiwindowmusicbase::additemtoplaylist(const cfileitem* pitem) in guiwindowmusicbase.cpp

chers