diff options
author | MaZderMind <github@mazdermind.de> | 2014-07-29 10:48:55 +0200 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2014-07-29 10:48:55 +0200 |
commit | 13cdf5cf6fd699030b7fefa1d3b9d695f3bf3ec0 (patch) | |
tree | 5f962c11d675a1b074ea0cacde59d066907da712 /voctocore | |
parent | fed9afe824926ef77c1cd815a5a0b41171b7bff4 (diff) |
rename file
Diffstat (limited to 'voctocore')
-rwxr-xr-x | voctocore/voctocat.py | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/voctocore/voctocat.py b/voctocore/voctocat.py deleted file mode 100755 index dcab83d..0000000 --- a/voctocore/voctocat.py +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/python3 -import gi -import signal - -gi.require_version('Gst', '1.0') -from gi.repository import GLib, Gst, Gtk, GObject - -from videomix import Videomix -from controlserver import ControlServer - - - -class Main: - def __init__(self): - self.videomix = Videomix() - self.controlserver = ControlServer(self.videomix) - -def runmain(): - GObject.threads_init() - Gst.init(None) - - signal.signal(signal.SIGINT, signal.SIG_DFL) - start=Main() - Gtk.main() - -if __name__ == '__main__': - runmain() |