diff options
author | MaZderMind <github@mazdermind.de> | 2014-07-28 23:13:45 +0200 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2014-07-28 23:13:45 +0200 |
commit | f3245358a983f2e97076cac3bbeaafc42eac148a (patch) | |
tree | 3f6a4e3651d7831be5496f25807186bd67cd5f4f /voctocat/voctocat.py | |
parent | 150db06d4dccb52b1b219dad4f5bb189c9d29d95 (diff) |
rename from octocat to core
Diffstat (limited to 'voctocat/voctocat.py')
-rwxr-xr-x | voctocat/voctocat.py | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/voctocat/voctocat.py b/voctocat/voctocat.py deleted file mode 100755 index dcab83d..0000000 --- a/voctocat/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() |