File size: 4,545 Bytes
8a5d43b
 
3e1b2b0
8a5d43b
3e1b2b0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8a5d43b
 
 
 
 
 
 
 
 
 
 
 
 
3e1b2b0
 
8a5d43b
 
 
3e1b2b0
 
8a5d43b
 
 
 
 
 
 
 
3e1b2b0
 
8a5d43b
 
 
 
3e1b2b0
8a5d43b
 
 
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
    "title": "AI Voice Cloner",
    "description": "Clone any voice sample in under 10 minutes",
    "inputs": [
        {
            "name": "language",
            "type": "text",
            "description": "Language of the voice you want to clone",
            "title": "Language",
            "options": {
                "min": 1,
                "max": 1,
                "items": [
                    {
                        "title": "English",
                        "value": "en",
                        "description": "English"
                    },
                    {
                        "title": "Spanish",
                        "value": "es",
                        "description": "Spanish"
                    },
                    {
                        "title": "French",
                        "value": "fr",
                        "description": "French"
                    },
                    {
                        "title": "German",
                        "value": "de",
                        "description": "German"
                    },
                    {
                        "title": "Italian",
                        "value": "it",
                        "description": "Italian"
                    },
                    {
                        "title": "Portuguese",
                        "value": "pt",
                        "description": "Portuguese"
                    },
                    {
                        "title": "Polish",
                        "value": "pl",
                        "description": "Polish"
                    },
                    {
                        "title": "Turkish",
                        "value": "tr",
                        "description": "Turkish"
                    },
                    {
                        "title": "Russian",
                        "value": "ru",
                        "description": "Russian"
                    },
                    {
                        "title": "Dutch",
                        "value": "nl",
                        "description": "Dutch"
                    },
                    {
                        "title": "Czech",
                        "value": "cs",
                        "description": "Czech"
                    },
                    {
                        "title": "Arabic",
                        "value": "ar",
                        "description": "Arabic"
                    },
                    {
                        "title": "Japanese",
                        "value": "ja",
                        "description": "Japanese"
                    },
                    {
                        "title": "Hindi",
                        "value": "hi",
                        "description": "Hindi"
                    },
                    {
                        "title": "Chinese",
                        "value": "zh-cn",
                        "description": "Chinese"
                    },
                    {
                        "title": "Korean",
                        "value": "ko",
                        "description": "Korean"
                    }
                ]
            }
        },
        {
            "name": "audio_urls",
            "type": "file",
            "description": "Upload audio samples of the voice you want to clone. Supports .wav and .mp3 files.",
            "title": "Audio Samples",
            "mimeTypes": [
                "audio/wav",
                "audio/mp3"
            ],
            "options": {
                "min": 1,
                "max": 5
            }
        },
        {
            "name": "text",
            "type": "text",
            "description": "Text to be narrated",
            "area": true,
            "options": {
                "min": 100,
                "max": 50000
            },
            "title": "Content"
        },
        {
            "name": "gpt_cond_len",
            "type": "constant",
            "value": 30
        },
        {
            "name": "gpt_cond_chunk_len",
            "type": "constant",
            "value": 25
        },
        {
            "name": "max_ref_length",
            "type": "constant",
            "value": 30
        },
        {
            "name": "temperature",
            "type": "constant",
            "value": 0.6
        },
        {
            "name": "repetition_penalty",
            "type": "constant",
            "value": 5.0
        }
    ]
}