5 lines
No EOL
100 B
Python
5 lines
No EOL
100 B
Python
from enum import Enum
|
|
|
|
class AudioEncoding(str, Enum):
|
|
LINEAR16 = "linear16"
|
|
MULAW = "mulaw" |