aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2008-11-20 12:17:28 +0100
committerFraxinas <andreas.frisch@multimedia-labs.de>2008-11-20 12:17:28 +0100
commit5a626462406c008da1c81cf304a448d9abd19576 (patch)
tree90b3df295fa9da4b526fb4bc6e389bfca54f87b6 /lib/python/Plugins
parent5474861f9be0b88428d490b45625d1a65575c020 (diff)
downloadenigma2-5a626462406c008da1c81cf304a448d9abd19576.tar.gz
enigma2-5a626462406c008da1c81cf304a448d9abd19576.zip
decode id3 cover art images embedded into mp3 files and show them in mediaplayer
Diffstat (limited to 'lib/python/Plugins')
-rw-r--r--lib/python/Plugins/Extensions/MediaPlayer/plugin.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/python/Plugins/Extensions/MediaPlayer/plugin.py b/lib/python/Plugins/Extensions/MediaPlayer/plugin.py
index 8477ecc1..b6d87a6e 100644
--- a/lib/python/Plugins/Extensions/MediaPlayer/plugin.py
+++ b/lib/python/Plugins/Extensions/MediaPlayer/plugin.py
@@ -82,10 +82,10 @@ class MediaPixmap(Pixmap):
def showDefaultCover(self):
self.instance.setPixmap(self.noCoverPixmap)
- #def destroy(self):
- #Pixmap.destroy(self)
- #print "mediapixmap ***********+ destroy"
-
+ def embeddedCoverArt(self):
+ print "[embeddedCoverArt] found"
+ self.coverArtFileName = "/tmp/.id3coverart"
+ self.picload.startDecode(self.coverArtFileName)
class MediaPlayer(Screen, InfoBarBase, InfoBarSeek, InfoBarAudioSelection, InfoBarCueSheetSupport, InfoBarNotifications, InfoBarSubtitleSupport, HelpableScreen):
ALLOW_SUSPEND = True
@@ -224,7 +224,8 @@ class MediaPlayer(Screen, InfoBarBase, InfoBarSeek, InfoBarAudioSelection, InfoB
{
iPlayableService.evUpdatedInfo: self.__evUpdatedInfo,
iPlayableService.evUser+11: self.__evDecodeError,
- iPlayableService.evUser+12: self.__evPluginError
+ iPlayableService.evUser+12: self.__evPluginError,
+ iPlayableService.evUser+13: self["coverArt"].embeddedCoverArt
})
def doNothing(self):