8 lines
151 B
Cython
8 lines
151 B
Cython
cimport libav as lib
|
|
|
|
from av.stream cimport Stream
|
|
|
|
|
|
cdef class StreamContainer:
|
|
cdef list _streams
|
|
cdef void add_stream(self, Stream stream)
|