Stav 23.06.2026

This commit is contained in:
2026-06-23 15:20:56 +02:00
commit 6d91e83e8c
5670 changed files with 1145969 additions and 0 deletions
@@ -0,0 +1,27 @@
'''
GstPlayer
=========
.. versionadded:: 1.8.0
`GstPlayer` is a media player implemented specifically for Kivy with Gstreamer
1.0. It doesn't use Gi at all and is focused on what we want: the ability
to read video and stream the image in a callback, or read an audio file.
Don't use it directly but use our Core providers instead.
This player is automatically compiled if you have `pkg-config --libs --cflags
gstreamer-1.0` working.
.. warning::
This is an external library and Kivy does not provide any support for it.
It might change in the future and we advise you don't rely on it in your
code.
'''
import os
if 'KIVY_DOC' in os.environ:
GstPlayer = get_gst_version = glib_iteration = None
else:
from kivy.lib.gstplayer._gstplayer import (
GstPlayer, get_gst_version, glib_iteration)