mirror of
https://github.com/matthew1000/gstreamer-cheat-sheet.git
synced 2024-11-22 00:10:59 +00:00
30 lines
685 B
Python
30 lines
685 B
Python
#!/usr/bin/env python
|
|
#
|
|
# Sends a test stream to a fake sink.
|
|
# This is utterly pointless, but allows easy testing of GStreamer
|
|
# Python on a remote box that doesn't have video.
|
|
#
|
|
# Equivalent to:
|
|
# gst-launch-1.0 videotestsrc ! fakesink
|
|
#
|
|
|
|
import gi
|
|
gi.require_version('Gst', '1.0')
|
|
from gi.repository import GObject, Gst
|
|
import os
|
|
|
|
Gst.init(None)
|
|
mainloop = GObject.MainLoop()
|
|
|
|
pipeline = Gst.Pipeline.new("pipe")
|
|
|
|
videotestsrc = Gst.ElementFactory.make("videotestsrc", "videotestsrc")
|
|
fakesink = Gst.ElementFactory.make("fakesink", "fakesink")
|
|
|
|
pipeline.add(videotestsrc)
|
|
pipeline.add(fakesink)
|
|
|
|
videotestsrc.link(fakesink)
|
|
|
|
pipeline.set_state(Gst.State.PLAYING)
|
|
mainloop.run()
|