Viewing File: /home/ubuntu/codegamaai-test/voice_clone/vocie_ai/lib/python3.10/site-packages/av/audio/layout.pxd

from libc.stdint cimport uint64_t


cdef class AudioLayout:

    # The layout for FFMpeg; this is essentially a bitmask of channels.
    cdef uint64_t layout
    cdef int nb_channels

    cdef readonly tuple channels
    """
    A tuple of :class:`AudioChannel` objects.

    :type: tuple
    """

    cdef _init(self, uint64_t layout)


cdef class AudioChannel:

    # The channel for FFmpeg.
    cdef uint64_t channel


cdef AudioLayout get_audio_layout(int channels, uint64_t c_layout)
Back to Directory File Manager