aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-06-11 00:07:28 +0000
committerFelix Domke <tmbinc@elitedvb.net>2008-06-11 00:07:28 +0000
commit53f199c5a82bcd460d3153814f2e057c747e2a3a (patch)
tree330362e303e4af776ee3129d718b517ac2a2e6aa /lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py
parentf6d690f4f6d13acdaf4bae627c8cff6a1d93a198 (diff)
downloadenigma2-53f199c5a82bcd460d3153814f2e057c747e2a3a.tar.gz
enigma2-53f199c5a82bcd460d3153814f2e057c747e2a3a.zip
add early version of DVDBurn plugin. Basic functionality is working, but it needs a major GUI redesign. Required tools: mplex, projectx, growisofs, mkisofs/genisoimage, dvdauthor
Diffstat (limited to 'lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py')
-rw-r--r--lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py b/lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py
new file mode 100644
index 00000000..3cba54af
--- /dev/null
+++ b/lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py
@@ -0,0 +1,10 @@
+from Plugins.Extensions.CutListEditor.plugin import CutListEditor
+
+class TitleCutter(CutListEditor):
+ def __init__(self, session, title):
+ CutListEditor.__init__(self, session, title.source)
+ #, title.cutlist)
+
+ def exit(self):
+ self.session.nav.stopService()
+ self.close(self.cut_list[:])