mirror of
https://github.com/matthew1000/gstreamer-cheat-sheet.git
synced 2024-11-25 17:51:00 +00:00
22 lines
435 B
Python
22 lines
435 B
Python
|
#!/usr/bin/env python
|
||
|
#
|
||
|
# Make sure the environment variable SRC is set to a playable file
|
||
|
# e.g.
|
||
|
# export SRC='/tmp/me.mp4'
|
||
|
#
|
||
|
|
||
|
import gi
|
||
|
gi.require_version('Gst', '1.0')
|
||
|
from gi.repository import GObject, Gst
|
||
|
import os
|
||
|
|
||
|
Gst.init()
|
||
|
mainloop = GObject.MainLoop()
|
||
|
|
||
|
pl = Gst.ElementFactory.make("playbin", "player")
|
||
|
pl.set_property('uri','file://'+os.environ['SRC'])
|
||
|
|
||
|
#running the playbin
|
||
|
pl.set_state(Gst.State.PLAYING)
|
||
|
mainloop.run()
|