diff options
| author | Andreas Frisch <andreas.frisch@multimedia-labs.de> | 2008-09-03 12:24:05 +0000 |
|---|---|---|
| committer | Andreas Frisch <andreas.frisch@multimedia-labs.de> | 2008-09-03 12:24:05 +0000 |
| commit | 2dc13ab463d67b1255ec31cbe2b27cafef318dbe (patch) | |
| tree | e75ad9b4933c8d7cd4c4bcd11a829ecf7eba8d1b /lib/python/Plugins/Extensions/DVDBurn/plugin.py | |
| parent | 2d77201356e5b7b4fb1971f651349f33e8cccd00 (diff) | |
| download | enigma2-2dc13ab463d67b1255ec31cbe2b27cafef318dbe.tar.gz enigma2-2dc13ab463d67b1255ec31cbe2b27cafef318dbe.zip | |
fix cuesheets, add multiple menu pages support, add preview support, add project saveing ...
Diffstat (limited to 'lib/python/Plugins/Extensions/DVDBurn/plugin.py')
| -rw-r--r-- | lib/python/Plugins/Extensions/DVDBurn/plugin.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/plugin.py b/lib/python/Plugins/Extensions/DVDBurn/plugin.py index 66fe96d5..8e0d7433 100644 --- a/lib/python/Plugins/Extensions/DVDBurn/plugin.py +++ b/lib/python/Plugins/Extensions/DVDBurn/plugin.py @@ -3,9 +3,11 @@ from Plugins.Plugin import PluginDescriptor def main(session, service, **kwargs): import TitleList import DVDProject - project = DVDProject.DVDProject() - project.addService(service) - session.open(TitleList.TitleList, project) + #project = DVDProject.DVDProject() + #project.addService(service) + burner = session.open(TitleList.TitleList) + burner.selectedSource(service) + def Plugins(**kwargs): - return PluginDescriptor(name="DVD Tool", description=_("Burn To DVD..."), where = PluginDescriptor.WHERE_MOVIELIST, fnc=main) + return PluginDescriptor(name="DVD Tool", description=_("Burn to DVD..."), where = PluginDescriptor.WHERE_MOVIELIST, fnc=main) |
