File size: 1,095 Bytes
6852edb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f21ec03
6852edb
 
 
 
 
 
f21ec03
29b1042
6852edb
 
 
29b1042
6852edb
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""
音频编辑配置模块
包含支持的编辑类型和相关配置
"""

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"],
    }