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(
|
||||
name='devedeng',
|
||||
|
||||
version='4.8.2',
|
||||
version='4.8.3',
|
||||
|
||||
description='A video DVD creator',
|
||||
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:
|
||||
self.command_var.append("-c:a")
|
||||
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("vcd")
|
||||
self.command_var.append("-r")
|
||||
|
|
|
|||
|
|
@ -231,6 +231,7 @@ class configuration(GObject.GObject):
|
|||
if (cr):
|
||||
self.log += "\n"
|
||||
|
||||
|
||||
def append_static_log(self,data,cr = True):
|
||||
|
||||
self.static_log += data
|
||||
|
|
|
|||
|
|
@ -275,6 +275,10 @@ class ffmpeg(devedeng.executor.executor):
|
|||
if not file_project.copy_sound:
|
||||
self.command_var.append("-c:a")
|
||||
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("vcd")
|
||||
self.command_var.append("-r")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue