Using Gstreamer with Kivy

Can anyone point me to an example of building a gstreamer powered app using kivy? I want to see how kivy handles gstreamer video output and I don't want to use kivy's built-in functions to play video. I need an example like this

+3


source to share


1 answer


If you want to see how Kivy handles video playback, it's as easy as looking at the sources ( _gstplayer.pyx video_gstplayer.py ). The GStreamer appsink is used to pass data back to Kivy for rendering. You probably won't find a tutorial on this, because most Kivy users will use the built-in functions.



+3


source







All Articles