Enums¶
Details¶
- class GstApp.AppLeakyType(value)¶
Bases:
GObject.GEnum
Buffer dropping scheme to avoid the element’s internal queue to block when full.
New in version 1.20.
- NONE = 0¶
Not Leaky
- UPSTREAM = 1¶
Leaky on upstream (new buffers)
- DOWNSTREAM = 2¶
Leaky on downstream (old buffers)
- class GstApp.AppStreamType(value)¶
Bases:
GObject.GEnum
The stream type.
- STREAM = 0¶
No seeking is supported in the stream, such as a live stream.
- SEEKABLE = 1¶
The stream is seekable but seeking might not be very fast, such as data from a webserver.
- RANDOM_ACCESS = 2¶
The stream is seekable and seeking is fast, such as in a local file.