Surbhi123's picture
Upload folder using huggingface_hub
64772a4 verified
raw
history blame contribute delete
311 Bytes
from av.stream cimport Stream
cdef class StreamContainer:
cdef list _streams
# For the different types.
cdef readonly tuple video
cdef readonly tuple audio
cdef readonly tuple subtitles
cdef readonly tuple data
cdef readonly tuple other
cdef add_stream(self, Stream stream)