Files
2026-07-13 13:39:38 +08:00

28 lines
409 B
Python

from typing import Literal
LMNTAudioFormats = Literal["aac", "mp3", "mulaw", "raw", "wav"]
LMNTLanguages = Literal[
"auto",
"de",
"en",
"es",
"fr",
"hi",
"id",
"it",
"ja",
"ko",
"nl",
"pl",
"pt",
"ru",
"sv",
"th",
"tr",
"uk",
"vi",
"zh",
]
LMNTModels = Literal["blizzard", "aurora"]
LMNTSampleRate = Literal[8000, 16000, 24000]