Now creates the XML for dvd menues, and multiplex them with the MPEG file

Now allows to send a file to stdin in a process, and store stdout in another file
This commit is contained in:
Sergio Costas 2014-07-24 20:49:23 +02:00
parent 86f77faa3f
commit e404f27e45
7 changed files with 204 additions and 24 deletions

View file

@ -33,7 +33,7 @@ class devede_project:
self.config = devede.configuration_data.configuration.get_config()
self.disc_type = self.config.disc_type
self.menu = devede.dvd_menu.dvd_menu(self)
self.menu = devede.dvd_menu.dvd_menu()
self.current_title = None
@ -252,7 +252,7 @@ class devede_project:
def on_menu_options_clicked(self,b):
self.menu.show_configuration()
self.menu.show_configuration(self.get_all_files())
def on_create_disc_clicked(self,b):
@ -262,6 +262,6 @@ class devede_project:
run_window = devede.runner.runner()
p = self.menu.create_dvd_menus(data.path)
p = self.menu.create_dvd_menus(self.get_all_files(), data.path)
run_window.add_processes(p)
run_window.run()