1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
from typing import Any, Union
import numpy as np
from av.frame import Frame
from .format import AudioFormat
from .layout import AudioLayout
from .plane import AudioPlane
format_dtypes: dict[str, str]
_SupportedNDarray = Union[
np.ndarray[Any, np.dtype[np.float64]], # f8
np.ndarray[Any, np.dtype[np.float32]], # f4
np.ndarray[Any, np.dtype[np.int32]], # i4
np.ndarray[Any, np.dtype[np.int16]], # i2
np.ndarray[Any, np.dtype[np.uint8]], # u1
]
class _Format:
def __get__(self, i: object | None, owner: type | None = None) -> AudioFormat: ...
def __set__(self, instance: object, value: AudioFormat | str) -> None: ...
class _Layout:
def __get__(self, i: object | None, owner: type | None = None) -> AudioLayout: ...
def __set__(self, instance: object, value: AudioLayout | str) -> None: ...
class AudioFrame(Frame):
planes: tuple[AudioPlane, ...]
samples: int
sample_rate: int
rate: int
format: _Format
layout: _Layout
def __init__(
self,
format: AudioFormat | str = "s16",
layout: AudioLayout | str = "stereo",
samples: int = 0,
align: int = 1,
) -> None: ...
@staticmethod
def from_ndarray(
array: _SupportedNDarray,
format: AudioFormat | str = "s16",
layout: AudioLayout | str = "stereo",
) -> AudioFrame: ...
def to_ndarray(self) -> _SupportedNDarray: ...
|