X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FPlugins%2FExtensions%2FDVDBurn%2FProcess.py;h=f1f5e73d931dc3525b7a21ac96b62d647a84c258;hp=e00dedd9de7526ab12af93ecb6d0bb4489de1847;hb=7da3c6b5bc7f55569e214a02645ea69fd6662dad;hpb=c5bb2c5e40c592c9ceb0a6dabd8aefe6f2c2c86b diff --git a/lib/python/Plugins/Extensions/DVDBurn/Process.py b/lib/python/Plugins/Extensions/DVDBurn/Process.py old mode 100644 new mode 100755 index e00dedd..f1f5e73 --- a/lib/python/Plugins/Extensions/DVDBurn/Process.py +++ b/lib/python/Plugins/Extensions/DVDBurn/Process.py @@ -901,7 +901,7 @@ class DVDJob(Job): tool = "genisoimage" isopathfile = getISOfilename(self.project.settings.isopath.getValue(), volName) burnargs = [ "-o", isopathfile ] - burnargs += [ "-dvd-video", "-publisher", "Dreambox", "-V", volName, self.workspace + "/dvd" ] + burnargs += [ "-dvd-video", "-publisher", "STB", "-V", volName, self.workspace + "/dvd" ] BurnTask(self, burnargs, tool) RemoveDVDFolder(self) @@ -947,7 +947,7 @@ class DVDdataJob(Job): burnargs += ["-iso-level", "4", "-allow-limited-size" ] elif self.project.settings.dataformat.getValue() == "udf": burnargs += ["-udf", "-allow-limited-size" ] - burnargs += [ "-publisher", "Dreambox", "-V", volName, "-follow-links", self.workspace ] + burnargs += [ "-publisher", "STB", "-V", volName, "-follow-links", self.workspace ] BurnTask(self, burnargs, tool) RemoveDVDFolder(self) @@ -968,6 +968,6 @@ class DVDisoJob(Job): burnargs = [ "-Z", "/dev/" + harddiskmanager.getCD(), "-dvd-compat" ] if getSize(imagepath)/(1024*1024) > self.project.MAX_SL: burnargs += [ "-use-the-force-luke=4gms", "-speed=1", "-R" ] - burnargs += [ "-dvd-video", "-publisher", "Dreambox", "-V", volName, imagepath ] + burnargs += [ "-dvd-video", "-publisher", "STB", "-V", volName, imagepath ] tool = "growisofs" BurnTask(self, burnargs, tool)