X-Git-Url: https://git.slaskete.net/python-gstreamer-examples/blobdiff_plain/cc05679084a7164c5575feb7e6c85875ed903997..16da69ecfba52fe2221aa9b7132b74f7a1a82eb8:/example2.py diff --git a/example2.py b/example2.py index 7edd159..9e8ff84 100755 --- a/example2.py +++ b/example2.py @@ -1,16 +1,16 @@ #!/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/ -# +# This is a reworked version gstreamer example 2 from Jono Bacon's Python and +# Gstreamer primer: +# http://www.jonobacon.org/2006/08/28/getting-started-with-gstreamer-with-python +# # It uses Gstreamer 1.0, GTK3, and replaces alsa with pulse for audio output # Info on porting python scripts to GStreamer 1.0 can be found here: # https://wiki.ubuntu.com/Novacut/GStreamer1.0 -import gi +import gi, signal gi.require_version('Gtk', '3.0') gi.require_version('Gst', '1.0') from gi.repository import Gtk, Gst -import signal class Main: def __init__(self):