aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Frisch <andreas.frisch@multimedia-labs.de>2008-10-27 15:35:03 +0000
committerAndreas Frisch <andreas.frisch@multimedia-labs.de>2008-10-27 15:35:03 +0000
commit3656a5402388e33ff86060ce0a4ea618a44f18f2 (patch)
tree4681bb2435c93a3cde7e01dc203d42a637a4322a /lib/python
parent56bd29b373d2de1a98ae7d41daa598e676a64088 (diff)
downloadenigma2-3656a5402388e33ff86060ce0a4ea618a44f18f2.tar.gz
enigma2-3656a5402388e33ff86060ce0a4ea618a44f18f2.zip
allow burning data dvds containing (.ts) files > 2 GB and long file names
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Plugins/Extensions/DVDBurn/Process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/Process.py b/lib/python/Plugins/Extensions/DVDBurn/Process.py
index 3bf91110..2123b376 100644
--- a/lib/python/Plugins/Extensions/DVDBurn/Process.py
+++ b/lib/python/Plugins/Extensions/DVDBurn/Process.py
@@ -709,5 +709,5 @@ class DVDdataJob(Job):
link_name = self.workspace + filename
LinkTS(self, title.inputfile, link_name)
CopyMeta(self, title.inputfile)
- BurnTask(self, ["-follow-links", self.workspace])
+ BurnTask(self, ["-iso-level", "4", "-follow-links", self.workspace])
RemoveDVDFolder(self)