diff options
| author | Fraxinas <andreas.frisch@multimedia-labs.de> | 2011-03-02 14:34:04 +0100 |
|---|---|---|
| committer | Fraxinas <andreas.frisch@multimedia-labs.de> | 2011-03-02 14:34:04 +0100 |
| commit | aba787cc8d9a47fcf3513f92835dac46836968a5 (patch) | |
| tree | 684ca9f8dcc67e68ae016d2fd9d97e18648a371b /lib/python | |
| parent | 4a3df90cd255278dc238f6bf15040f02e0fec8f3 (diff) | |
| download | enigma2-aba787cc8d9a47fcf3513f92835dac46836968a5.tar.gz enigma2-aba787cc8d9a47fcf3513f92835dac46836968a5.zip | |
[DVDBurn] start projectx task with command line parameter to ommit subpicture/ttx stream demuxing, fixes recent RTL recordings crashing (#689)
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Plugins/Extensions/DVDBurn/Process.py | 2 |
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 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 |
