From f3245358a983f2e97076cac3bbeaafc42eac148a Mon Sep 17 00:00:00 2001 From: MaZderMind Date: Mon, 28 Jul 2014 23:13:45 +0200 Subject: rename from octocat to core --- voctocat/voctocat.py | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100755 voctocat/voctocat.py (limited to 'voctocat/voctocat.py') 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() -- cgit v1.2.3