From: Fraxinas Date: Wed, 2 Mar 2011 13:34:04 +0000 (+0100) Subject: [DVDBurn] start projectx task with command line parameter to ommit subpicture/ttx... X-Git-Tag: 3.1.0~8^2 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/aba787cc8d9a47fcf3513f92835dac46836968a5 [DVDBurn] start projectx task with command line parameter to ommit subpicture/ttx stream demuxing, fixes recent RTL recordings crashing (#689) --- diff --git a/lib/python/Plugins/Extensions/DVDBurn/Process.py b/lib/python/Plugins/Extensions/DVDBurn/Process.py index 2e7435bb..a928ae20 100644 --- a/lib/python/Plugins/Extensions/DVDBurn/Process.py +++ b/lib/python/Plugins/Extensions/DVDBurn/Process.py @@ -85,7 +85,7 @@ class DemuxTask(Task): title = job.project.titles[job.i] self.global_preconditions.append(DiskspacePrecondition(title.estimatedDiskspace)) self.setTool("projectx") - self.args += [inputfile, "-demux", "-out", self.job.workspace ] + self.args += [inputfile, "-demux", "-set", "ExportPanel.Streamtype.Subpicture=0", "-set", "ExportPanel.Streamtype.Teletext=0", "-out", self.job.workspace ] self.end = 300 self.prog_state = 0 self.weighting = 1000