File size: 247 Bytes
06555b5
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
class AudioFormat:
    name: str
    bytes: int
    bits: int
    is_planar: bool
    is_packed: bool
    planar: AudioFormat
    packed: AudioFormat
    container_name: str

    def __init__(self, name: str | AudioFormat) -> None: ...