X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FPlugins%2FExtensions%2FDVDBurn%2FProcess.py;h=345645d76b00457789283959dcdc1184468449f2;hp=b64541b650936e1960000f26c8cba3fc30001bb6;hb=fb766db909330b55b7c650a49017a9d53a2747b4;hpb=0729cb50a9fb6b2e576eedf998028dd486452da1 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 b64541b..345645d --- a/lib/python/Plugins/Extensions/DVDBurn/Process.py +++ b/lib/python/Plugins/Extensions/DVDBurn/Process.py @@ -891,7 +891,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) @@ -937,7 +937,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) @@ -958,6 +958,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)