Now creates the ISO file

Shows the output from dvdauthor in the progress bar

Now takes into account the childs when adding a process as dependency for another
This commit is contained in:
Sergio Costas 2014-07-31 22:40:21 +02:00
parent 54a2dd0b03
commit 6b2596d432
5 changed files with 86 additions and 0 deletions

View file

@ -158,6 +158,14 @@ class file_movie(devede.interface_manager.interface_manager):
def set_final_size_aspect(self):
if self.is_mpeg_ps:
self.width_midle = self.original_width
self.width_final = self.original_width
self.height_midle = self.original_height
self.height_final = self.original_height
self.aspect_ratio_final = self.original_aspect_ratio
return
if self.format_pal:
final_size = self.final_size_pal
else: