Spaces:
Running
on
Zero
Running
on
Zero
| """ | |
| ้ณ้ข็ผ่พ้ ็ฝฎๆจกๅ | |
| ๅ ๅซๆฏๆ็็ผ่พ็ฑปๅๅ็ธๅ ณ้ ็ฝฎ | |
| """ | |
| def get_supported_edit_types(): | |
| """ | |
| ่ทๅๆฏๆ็็ผ่พ็ฑปๅๅ้้กน | |
| Returns: | |
| Dict[str, list]: Dictionary of edit types and their options | |
| """ | |
| return { | |
| "clone": [], | |
| "emotion": [ | |
| 'happy', 'angry', 'sad', 'humour', 'confusion', 'disgusted', | |
| 'empathy', 'embarrass', 'fear', 'surprised', 'excited', | |
| 'depressed', 'coldness', 'admiration', 'remove' | |
| ], | |
| "style": [ | |
| 'serious', 'arrogant', 'child', 'older', 'girl', 'pure', | |
| 'sister', 'sweet', 'ethereal', 'whisper', 'gentle', 'recite', | |
| 'generous', 'act_coy', 'warm', 'shy', 'comfort', 'authority', | |
| 'chat', 'radio', 'soulful', 'story', 'vivid', 'program', | |
| 'news', 'advertising', 'roar', 'murmur', 'shout', 'deeply', 'loudly', | |
| 'remove', 'exaggerated' | |
| ], | |
| "vad": [], | |
| "denoise": [], | |
| "paralinguistic": [], | |
| "speed": ["faster", "slower", "more faster", "more slower"], | |
| } |