6 lines
102 B
Python
6 lines
102 B
Python
from enum import Enum
|
|
|
|
|
|
class AudioEncoding(str, Enum):
|
|
LINEAR16 = "linear16"
|
|
MULAW = "mulaw"
|