Fixed missed command for VCD
This commit is contained in:
parent
39b1687381
commit
c970373da7
4 changed files with 11 additions and 2 deletions
2
setup.py
2
setup.py
|
|
@ -64,7 +64,7 @@ except:
|
||||||
setup(
|
setup(
|
||||||
name='devedeng',
|
name='devedeng',
|
||||||
|
|
||||||
version='4.8.2',
|
version='4.8.3',
|
||||||
|
|
||||||
description='A video DVD creator',
|
description='A video DVD creator',
|
||||||
long_description = "A program that allows to create video DVDs",
|
long_description = "A program that allows to create video DVDs",
|
||||||
|
|
|
||||||
|
|
@ -282,6 +282,10 @@ class avconv(devedeng.avbase.avbase):
|
||||||
if not file_project.copy_sound:
|
if not file_project.copy_sound:
|
||||||
self.command_var.append("-c:a")
|
self.command_var.append("-c:a")
|
||||||
self.command_var.append("mp2")
|
self.command_var.append("mp2")
|
||||||
|
self.command_var.append("-b:v")
|
||||||
|
self.command_var.append("1150000")
|
||||||
|
self.command_var.append("-b:a")
|
||||||
|
self.command_var.append("224000")
|
||||||
self.command_var.append("-f")
|
self.command_var.append("-f")
|
||||||
self.command_var.append("vcd")
|
self.command_var.append("vcd")
|
||||||
self.command_var.append("-r")
|
self.command_var.append("-r")
|
||||||
|
|
|
||||||
|
|
@ -227,9 +227,10 @@ class configuration(GObject.GObject):
|
||||||
|
|
||||||
def append_log(self,data,cr = True):
|
def append_log(self,data,cr = True):
|
||||||
|
|
||||||
self.log+=data
|
self.log += data
|
||||||
if (cr):
|
if (cr):
|
||||||
self.log += "\n"
|
self.log += "\n"
|
||||||
|
|
||||||
|
|
||||||
def append_static_log(self,data,cr = True):
|
def append_static_log(self,data,cr = True):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -275,6 +275,10 @@ class ffmpeg(devedeng.executor.executor):
|
||||||
if not file_project.copy_sound:
|
if not file_project.copy_sound:
|
||||||
self.command_var.append("-c:a")
|
self.command_var.append("-c:a")
|
||||||
self.command_var.append("mp2")
|
self.command_var.append("mp2")
|
||||||
|
self.command_var.append("-b:v")
|
||||||
|
self.command_var.append("1150000")
|
||||||
|
self.command_var.append("-b:a")
|
||||||
|
self.command_var.append("224000")
|
||||||
self.command_var.append("-f")
|
self.command_var.append("-f")
|
||||||
self.command_var.append("vcd")
|
self.command_var.append("vcd")
|
||||||
self.command_var.append("-r")
|
self.command_var.append("-r")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue