Initialisation du repository de Beta
This commit is contained in:
commit
14985f6dbb
9469 changed files with 1903273 additions and 0 deletions
18
venv/lib/python3.12/site-packages/av/audio/resampler.pxd
Normal file
18
venv/lib/python3.12/site-packages/av/audio/resampler.pxd
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
from av.audio.format cimport AudioFormat
|
||||
from av.audio.frame cimport AudioFrame
|
||||
from av.audio.layout cimport AudioLayout
|
||||
from av.filter.graph cimport Graph
|
||||
|
||||
|
||||
cdef class AudioResampler:
|
||||
cdef readonly bint is_passthrough
|
||||
cdef AudioFrame template
|
||||
|
||||
# Destination descriptors
|
||||
cdef readonly AudioFormat format
|
||||
cdef readonly AudioLayout layout
|
||||
cdef readonly int rate
|
||||
cdef readonly unsigned int frame_size
|
||||
|
||||
cdef Graph graph
|
||||
cpdef list resample(self, AudioFrame)
|
||||
Loading…
Add table
Add a link
Reference in a new issue