From e54cedc5dd480d947f7051b50184f4bb355a841b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Einar=20J=C3=B8rgen=20Haraldseid?= Date: Sat, 3 Jun 2017 08:49:57 +0200 Subject: [PATCH] Removed Gtk dependency for example1 (pure CLI) --- example1.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/example1.py b/example1.py index 5916bb4..c3975f2 100755 --- a/example1.py +++ b/example1.py @@ -7,9 +7,9 @@ # Info on porting python scripts to Gstreamer 1.0 can be found here: # https://wiki.ubuntu.com/Novacut/GStreamer1.0 -import gi +import gi, time gi.require_version('Gst', '1.0') -from gi.repository import Gst, GLib +from gi.repository import Gst class Main: def __init__(self): @@ -33,9 +33,5 @@ class Main: # Create the pipelie and enter main loop, quit with ctrl+c start = Main() -mainloop = GLib.MainLoop() - -try: - mainloop.run() -except KeyboardInterrupt: - exit(0) +while True: + time.sleep(0.001) -- 2.30.2