__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
from av.packet cimport Packet
from av.stream cimport Stream
cdef class SubtitleStream(Stream):
"""
A :class:`SubtitleStream` can contain many :class:`SubtitleSet` objects accessible via decoding.
"""
def __getattr__(self, name):
return getattr(self.codec_context, name)
cpdef decode(self, Packet packet=None):
"""
Decode a :class:`.Packet` and return a list of :class:`.SubtitleSet`.
:rtype: list[SubtitleSet]
.. seealso:: This is a passthrough to :meth:`.CodecContext.decode`.
"""
if not packet:
packet = Packet()
return self.codec_context.decode(packet)
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| __init__.pxd | File | 0 B | 0644 |
|
| __init__.py | File | 0 B | 0644 |
|
| codeccontext.cpython-313-aarch64-linux-gnu.so | File | 68.83 KB | 0644 |
|
| codeccontext.pxd | File | 101 B | 0644 |
|
| codeccontext.pyi | File | 143 B | 0644 |
|
| codeccontext.pyx | File | 633 B | 0644 |
|
| stream.cpython-313-aarch64-linux-gnu.so | File | 68.88 KB | 0644 |
|
| stream.pxd | File | 137 B | 0644 |
|
| stream.pyi | File | 212 B | 0644 |
|
| stream.pyx | File | 658 B | 0644 |
|
| subtitle.cpython-313-aarch64-linux-gnu.so | File | 140.45 KB | 0644 |
|
| subtitle.pxd | File | 592 B | 0644 |
|
| subtitle.pyi | File | 804 B | 0644 |
|
| subtitle.pyx | File | 5.93 KB | 0644 |
|