emit evUpdatedInfo on id3 taglist parse and implement YEAR tag
authorAndreas Frisch <andreas.frisch@multimedia-labs.de>
Sat, 18 Oct 2008 20:31:57 +0000 (20:31 +0000)
committerAndreas Frisch <andreas.frisch@multimedia-labs.de>
Sat, 18 Oct 2008 20:31:57 +0000 (20:31 +0000)
lib/python/Plugins/Extensions/MediaPlayer/plugin.py
lib/service/servicemp3.cpp

index afb8772e9ce492769ae7bea0efc49ee03ed14c8c..c751bb0d78caaca6e2d496f77420c97983e9bd5f 100644 (file)
@@ -244,7 +244,7 @@ class MediaPlayer(Screen, InfoBarBase, InfoBarSeek, InfoBarAudioSelection, InfoB
                        sAlbum = currPlay.info().getInfoString(iServiceInformation.sAlbum)
                        sGenre = currPlay.info().getInfoString(iServiceInformation.sGenre)
                        sArtist = currPlay.info().getInfoString(iServiceInformation.sArtist)
                        sAlbum = currPlay.info().getInfoString(iServiceInformation.sAlbum)
                        sGenre = currPlay.info().getInfoString(iServiceInformation.sGenre)
                        sArtist = currPlay.info().getInfoString(iServiceInformation.sArtist)
-                       sYear = ""
+                       sYear = currPlay.info().getInfoString(iServiceInformation.sTimeCreate)
 
                        if sTitle == "":
                                if not self.isAudioCD:
 
                        if sTitle == "":
                                if not self.isAudioCD:
index a738a5a8b28db7890e5d09358b1b40114ac49206..225d90f69938145f8e00a156efd428ea782c9d2b 100644 (file)
@@ -681,6 +681,7 @@ int eServiceMP3::getInfo(int w)
        case sTracknumber:
        case sGenre:
        case sVideoType:
        case sTracknumber:
        case sGenre:
        case sVideoType:
+       case sTimeCreate:
        case sUser+12:
                return resIsString;
        case sCurrentTitle:
        case sUser+12:
                return resIsString;
        case sCurrentTitle:
@@ -706,6 +707,8 @@ int eServiceMP3::getInfo(int w)
 
 std::string eServiceMP3::getInfoString(int w)
 {
 
 std::string eServiceMP3::getInfoString(int w)
 {
+       if ( !m_stream_tags )
+               return "";
        gchar *tag = 0;
        switch (w)
        {
        gchar *tag = 0;
        switch (w)
        {
@@ -730,24 +733,29 @@ std::string eServiceMP3::getInfoString(int w)
        case sVideoType:
                tag = GST_TAG_VIDEO_CODEC;
                break;
        case sVideoType:
                tag = GST_TAG_VIDEO_CODEC;
                break;
+       case sTimeCreate:
+               GDate *date;
+               if (gst_tag_list_get_date(m_stream_tags, GST_TAG_DATE, &date))
+               {
+                       gchar res[5];
+                       g_date_strftime (res, sizeof(res), "%Y", date); 
+                       return (std::string)res;
+               }
+               break;
        case sUser+12:
                return m_error_message;
        default:
                return "";
        }
        case sUser+12:
                return m_error_message;
        default:
                return "";
        }
-       
-       if (!m_stream_tags || !tag)
+       if ( !tag )
                return "";
                return "";
-       
        gchar *value;
        gchar *value;
-       
        if (gst_tag_list_get_string(m_stream_tags, tag, &value))
        {
                std::string res = value;
                g_free(value);
                return res;
        }
        if (gst_tag_list_get_string(m_stream_tags, tag, &value))
        {
                std::string res = value;
                g_free(value);
                return res;
        }
-       
        return "";
 }
 
        return "";
 }
 
@@ -918,6 +926,9 @@ void eServiceMP3::gstBusCall(GstBus *bus, GstMessage *msg)
                        audio.type = gstCheckAudioPad(str);
                        m_audioStreams.push_back(audio);
                }
                        audio.type = gstCheckAudioPad(str);
                        m_audioStreams.push_back(audio);
                }
+
+               gst_tag_list_free(tags);
+               m_event((iPlayableService*)this, evUpdatedInfo);
                break;
        }
        case GST_MESSAGE_ASYNC_DONE:
                break;
        }
        case GST_MESSAGE_ASYNC_DONE: