Ejemplo n.º 1
0
 def __init__(self):
     InputUI.__init__(self)
     self.interface.add_from_file(UI_DIR + "/input/fileinput.ui")
     self.box = self.interface.get_object("file_box")
     self.config["location"] = ""
     self.button = SaveButton()
     self.box.attach(self.button, 1, 2, 0, 1)
Ejemplo n.º 2
0
class FileOutputUI(OutputUI):
    def __init__(self):
        OutputUI.__init__(self)
        self.interface.add_from_file(UI_DIR + "/output/fileoutput.ui")
        self.box = self.interface.get_object("file_box")
        self.config["location"] = "default.ogg"
        self.button = SaveButton()

        self.box.attach(self.button, 1, 2, 0, 1)

    def get_config(self):
        self.config["location"] = self.button.get_filename()
        OutputUI.get_config(self)
        return self.config

    def update_config(self):
        self.button.set_filename(self.config["location"])
        OutputUI.update_config(self)

    def get_widget(self):
        return self.box

    def get_name(self):
        return "File"

    def get_description(self):
        return "Output video to file"
Ejemplo n.º 3
0
class FileOutputUI(OutputUI):
    def __init__(self):
        OutputUI.__init__(self)
        self.interface.add_from_file(UI_DIR + "/output/fileoutput.ui")
        self.box = self.interface.get_object("file_box")
        self.config["location"] = "default.ogg"
        self.button = SaveButton()

        self.box.attach(self.button, 1, 2, 0, 1)

    def get_config(self):
        self.config["location"] = self.button.get_filename()
        OutputUI.get_config(self)
        return self.config

    def update_config(self):
        self.button.set_filename(self.config["location"])
        OutputUI.update_config(self)

    def get_widget(self):
        return self.box

    def get_name(self):
        return "File"

    def get_description(self):
        return "Output video to file"
Ejemplo n.º 4
0
    def __init__(self):
        OutputUI.__init__(self)
        self.interface.add_from_file(UI_DIR + "/output/fileoutput.ui")
        self.box = self.interface.get_object("file_box")
        self.config["location"] = "default.ogg"
        self.button = SaveButton()

        self.box.attach(self.button, 1, 2, 0, 1)
Ejemplo n.º 5
0
class DVInputUI(InputUI):
    def __init__(self):
        InputUI.__init__(self)
        self.interface.add_from_file(UI_DIR + "/input/dvinput.ui")
        self.box = self.interface.get_object("dv_box")
        self.channel_entry = self.interface.get_object("channel_entry")
        self.port_entry = self.interface.get_object("port_entry")
        self.width_entry = self.interface.get_object("width_entry")
        self.height_entry = self.interface.get_object("height_entry")
        self.file_checkbutton = self.interface.get_object("file_checkbutton")
        self.avc_checkbutton = self.interface.get_object("avc_checkbutton")
        self.file_label = self.interface.get_object("file_label")
        self.filechooserbutton = SaveButton()
        self.filechooserbutton.set_sensitive(False)
        self.box.attach(self.filechooserbutton, 1, 2, 5, 6)

        self.file_checkbutton.connect("toggled", self.file_toggle)

    def file_toggle(self, checkbutton):
        self.file_label.set_sensitive(checkbutton.get_active())
        self.filechooserbutton.set_sensitive(checkbutton.get_active())

    def get_widget(self):
        return self.box

    def get_name(self):
        return "DV Firewire"

    def get_description(self):
        return "Get video and audio from Firewire DV"

    def update_config(self):
        self.channel_entry.set_text(self.config["channel"])
        self.port_entry.set_text(self.config["port"])
        self.width_entry.set_text(self.config["width"])
        self.height_entry.set_text(self.config["height"])
        self.file_checkbutton.set_active(self.config["file_enabled"] == 'True')
        self.avc_checkbutton.set_active(self.config["use-avc"] == 'True')
        #  set_filename doesn't accept null values
        if self.config["file_enabled"] == 'False':
            self.config["filename"] = ""
        self.filechooserbutton.set_filename(self.config["filename"])

    def get_config(self):
        self.config["channel"] = self.channel_entry.get_text()
        self.config["port"] = self.port_entry.get_text()
        self.config["width"] = self.width_entry.get_text()
        self.config["height"] = self.height_entry.get_text()
        if self.file_checkbutton.get_active() is True:
            self.config["file_enabled"] = 'True'
        else:
            self.config["file_enabled"] = 'False'
        if self.avc_checkbutton.get_active() is True:
            self.config["use-avc"] = 'True'
        else:
            self.config["use-avc"] = 'False'
        self.config["filename"] = self.filechooserbutton.get_filename()
        return self.config
Ejemplo n.º 6
0
    def __init__(self):
        InputUI.__init__(self)
        self.interface.add_from_file(UI_DIR + "/input/dvinput.ui")
        self.box = self.interface.get_object("dv_box")
        self.channel_entry = self.interface.get_object("channel_entry")
        self.port_entry = self.interface.get_object("port_entry")
        self.width_entry = self.interface.get_object("width_entry")
        self.height_entry = self.interface.get_object("height_entry")
        self.file_checkbutton = self.interface.get_object("file_checkbutton")
        self.file_label = self.interface.get_object("file_label")
        self.filechooserbutton = SaveButton()
        self.filechooserbutton.set_sensitive(False)
        self.box.attach(self.filechooserbutton, 1, 2, 5, 6)

        self.file_checkbutton.connect("toggled", self.file_toggle)
Ejemplo n.º 7
0
class FileInputUI(InputUI):
    def __init__(self):
        InputUI.__init__(self)
        self.interface.add_from_file(UI_DIR + "/input/fileinput.ui")
        self.box = self.interface.get_object("file_box")
        self.config["location"] = ""
        self.button = SaveButton()
        self.box.attach(self.button, 1, 2, 0, 1)

    def get_config(self):
        self.config["location"] = self.button.get_filename()
        return self.config

    def update_config(self):
        self.button.set_filename(self.config["location"])

    def get_widget(self):
        return self.box

    def get_name(self):
        return "File"

    def get_description(self):
        return "Get Video from file"