-# 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
# 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
signals = {
"on_play_clicked" : self.OnPlay,
"on_stop_clicked" : self.OnStop,
signals = {
"on_play_clicked" : self.OnPlay,
"on_stop_clicked" : self.OnStop,
# Add an audiotestsrc element to the pipeline
self.audiotestsrc = Gst.ElementFactory.make("audiotestsrc", "audio")
# Add an audiotestsrc element to the pipeline
self.audiotestsrc = Gst.ElementFactory.make("audiotestsrc", "audio")
self.pipeline.set_state(Gst.State.PLAYING)
def OnStop(self, widget):
self.pipeline.set_state(Gst.State.PLAYING)
def OnStop(self, widget):