Fixed missed command for VCD

This commit is contained in:
Sergio Costas 2016-10-16 21:56:03 +02:00
parent 39b1687381
commit c970373da7
4 changed files with 11 additions and 2 deletions

View file

@ -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",

View file

@ -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")

View file

@ -227,10 +227,11 @@ class configuration(GObject.GObject):
def append_log(self,data,cr = True):
self.log+=data
self.log += data
if (cr):
self.log += "\n"
def append_static_log(self,data,cr = True):
self.static_log += data

View file

@ -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")