File size: 264 Bytes
64772a4
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
channel_descriptions: dict[str, str]

class AudioLayout:
    name: str
    layout: int
    nb_channels: int
    channels: tuple[AudioChannel, ...]
    def __init__(self, layout: int | str | AudioLayout): ...

class AudioChannel:
    name: str
    description: str