Removed Gtk dependency for example1 (pure CLI)
[python-gstreamer-examples] / example1.py
index 9c41425b736a0bdac760385a63becbca5a6c7f53..c3975f211e4c4bdda161cc20d4d5d0ce9b410737 100755 (executable)
@@ -1,15 +1,15 @@
 #!/usr/bin/env python
 # This is a reworked version of the example from Jono Bacon's Python+Gstreamer
 # primer: http://www.jonobacon.org/2006/08/28/getting-started-with-gstreamer-with-python/
-# 
+#
 # It uses Gstreamer 1.0, and replaces alsa with pulse for audio output, and
 # drops the use of the GTK main loop, since we're not bothered with a GUI
 # 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, GObject
+from gi.repository import Gst
 
 class Main:
   def __init__(self):
@@ -33,5 +33,5 @@ class Main:
 
 # Create the pipelie and enter main loop, quit with ctrl+c
 start = Main()
-mainloop = GObject.MainLoop()
-mainloop.run()
+while True:
+    time.sleep(0.001)