File size: 311 Bytes
64772a4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)