设置默认为英语
Browse files- app.py +25 -60
- i18n/translations.json +72 -72
app.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
-
from io import StringIO
|
2 |
import time
|
3 |
import os
|
4 |
import logging
|
@@ -6,7 +5,7 @@ import logging
|
|
6 |
import gradio as gr
|
7 |
import pandas as pd
|
8 |
from pypinyin import lazy_pinyin
|
9 |
-
from gradio_i18n import
|
10 |
|
11 |
from api import generate_api
|
12 |
|
@@ -21,36 +20,13 @@ logging.getLogger("gradio").setLevel(logging.WARNING)
|
|
21 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
22 |
|
23 |
|
24 |
-
|
25 |
-
## 免责声明
|
26 |
|
27 |
-
|
28 |
-
|
29 |
-
1. **角色版权**:本网站可能使用的角色形象涉及第三方知识产权。本网站不拥有这些角色的版权。用户在使用服务时应尊重相关角色的知识产权,并确保其行为不侵犯任何第三方的知识产权。
|
30 |
-
|
31 |
-
2. **用户生成内容(UGC)**:用户通过本平台生成的语音内容(以下简称“UGC”)由用户自行负责,与本平台无关。本平台无法控制或审核用户生成的具体内容,且不对UGC的准确性、完整性或合法性承担任何责任。
|
32 |
-
|
33 |
-
3. **使用限制**:本服务生成的语音及其UGC仅限于个人使用,不得用于任何商业目的。未经本平台事先书面同意,禁止将生成内容用于任何商业活动。
|
34 |
-
|
35 |
-
4. **法律责任**:用户使用本服务所产生的任何法律责任由用户自行承担,与本平台无关。如因用户使用服务或其UGC导致的任何纠纷或损失,本平台不承担任何责任。
|
36 |
-
|
37 |
-
5. **版权声明**:用户应尊重原创,不得使用本服务生成侵犯他人著作权的内容。如发现用户生成内容侵犯他人版权,本平台有权立即停止对其提供服务,并保留追究法律责任的权利。
|
38 |
-
|
39 |
-
6. **内容监管**:尽管本平台无法控制UGC,但一旦发现违反本免责声明或法律法规的内容,本平台将采取必要措施,包括但不限于删除违规内容,并配合有关部门进行调查。
|
40 |
-
|
41 |
-
7. **注明要求**:用户应在生成内容的显著位置,如可能的话,注明“此内容由RubiiTTS生成”或类似的说明。用户应确保注明行为符合本条款的要求。
|
42 |
-
|
43 |
-
用户使用本网站即表示同意以上免责声明。如有疑问,请联系我们[email protected]。
|
44 |
-
|
45 |
-
**最终解释权归本网站所有。**
|
46 |
-
|
47 |
-
"""
|
48 |
-
|
49 |
-
terms_js = r"alert('本网站提供的语音合成服务仅供个人使用和娱乐目的。请注意以下几点:\n1. 角色版权:本网站使用的角色形象可能涉及第三方知识产权,我们不拥有这些角色的版权。\n2. 生成内容:用户通过本平台生成的语音内容由用户自行负责,与本平台无关。我们无法控制或审核用户生成的内容。\n3. 使用限制:生成的语音仅限个人使用,不得用于任何商业目的。\n4. 法律责任:用户使用本服务所产生的任何法律责任由用户自行承担,与本平台无关。\n5. 版权声明:请尊重原创,不要使用本服务生成侵犯他人著作权的内容。\n使用本网站即表示您同意以上免责声明。如有疑问,请联系我们。')"
|
50 |
|
51 |
def load_characters_csv(lang):
|
52 |
-
|
53 |
-
return pd.read_csv(
|
54 |
|
55 |
def update_all_characters(lang, current_all_characters):
|
56 |
new_characters = load_characters_csv(lang)
|
@@ -137,7 +113,7 @@ async def generate(selected_character = None, selected_characters = [], text = "
|
|
137 |
elif lang == "ko":
|
138 |
raise gr.Error("텍스트 길이가 512자를 초과합니다")
|
139 |
|
140 |
-
|
141 |
audio = await generate_api(voice_ids, text)
|
142 |
end_time = time.time()
|
143 |
if lang == "zh":
|
@@ -250,23 +226,12 @@ def on_select(evt: gr.SelectData, characters, selected_characters, all_character
|
|
250 |
return selected["名称"], gr.Dropdown(choices=emotions, value=default_emotion), character_dict, selected_characters
|
251 |
|
252 |
with gr.Blocks(title="Rubii TTS", theme=gr.themes.Soft()) as demo:
|
253 |
-
lang = gr.Radio(choices=[("中文", "zh"), ("English", "en"), ("日本語", "ja"), ("한국인", "ko")], label=gettext("Language"), value="
|
254 |
-
all_characters_state = gr.State(load_characters_csv("
|
255 |
|
256 |
with Translate(trans_file, lang, placeholder_langs=["en", "zh", "ja", "ko"]):
|
257 |
gr.Markdown(
|
258 |
-
value=gettext(
|
259 |
-
|
260 |
-
#### [🗣️ 不想只是听到角色的声音,还想与他们进行互动交流吗?快点击我来体验与这些角色的生动对话吧!(中国大陆暂不可用) 🌟](https://rubii.ai)
|
261 |
-
|
262 |
-
📝 使用说明:
|
263 |
-
1. 选择角色类别 🎭
|
264 |
-
2. 从图库中选择一个或多个角色(最多5个) 👥。当选择多个角色时,系统会自动进行声线融合(以第一个角色为主音色,其他角色为辅助音色),您可以尝试不同的组合来获得独特的声音效果。
|
265 |
-
3. 选择角色的情绪 😊😢😠
|
266 |
-
4. 输入要合成的文本 ✍️
|
267 |
-
5. 点击"合成语音"按钮 🔊
|
268 |
-
"""
|
269 |
-
))
|
270 |
with gr.Group():
|
271 |
initial_characters = get_characters(kind="原神", lang="zh", all_characters=all_characters_state.value)
|
272 |
characters = gr.State(initial_characters)
|
@@ -276,9 +241,9 @@ with gr.Blocks(title="Rubii TTS", theme=gr.themes.Soft()) as demo:
|
|
276 |
with gr.Blocks():
|
277 |
with gr.Row():
|
278 |
# kind = gr.Dropdown(choices=["原神", "崩坏星穹铁道","鸣潮","明日方舟","其他"], value="原神", label="请选择角色类别")
|
279 |
-
choices = ["原神", "崩坏星穹铁道", "鸣潮"]
|
280 |
-
kind = gr.Dropdown(choices=
|
281 |
-
query = gr.Textbox(label=gettext("
|
282 |
with gr.Blocks():
|
283 |
gallery = gr.Gallery(
|
284 |
value=[[char['头像'], char['名称']] for char in characters.value],
|
@@ -292,21 +257,21 @@ with gr.Blocks(title="Rubii TTS", theme=gr.themes.Soft()) as demo:
|
|
292 |
selected_index=None
|
293 |
)
|
294 |
with gr.Row():
|
295 |
-
character_name = gr.Textbox(label=gettext("
|
296 |
-
info_type = gr.Dropdown(choices=[], label=gettext("
|
297 |
with gr.Row():
|
298 |
-
add_voice_button = gr.Button(gettext("
|
299 |
|
300 |
selected_chars_container = gr.Column(elem_id="selected_chars_container", visible=False)
|
301 |
|
302 |
with selected_chars_container:
|
303 |
-
gr.Markdown(gettext("###
|
304 |
selected_chars_rows = []
|
305 |
for i in range(5): # 假设最多选择5个角色
|
306 |
with gr.Row() as row:
|
307 |
-
name = gr.Textbox(label=gettext("
|
308 |
-
emotion = gr.Textbox(label=gettext("
|
309 |
-
delete_btn = gr.Button(gettext("
|
310 |
selected_chars_rows.append((name, emotion, delete_btn, row))
|
311 |
|
312 |
|
@@ -367,11 +332,11 @@ with gr.Blocks(title="Rubii TTS", theme=gr.themes.Soft()) as demo:
|
|
367 |
|
368 |
with gr.Row():
|
369 |
with gr.Column():
|
370 |
-
text = gr.Textbox(label=gettext("
|
371 |
-
inference_button = gr.Button(gettext("🎉
|
372 |
with gr.Column():
|
373 |
-
output = gr.Audio(label=gettext("
|
374 |
-
cost_time = gr.Textbox(label=gettext("
|
375 |
try:
|
376 |
inference_button.click(
|
377 |
fn=generate,
|
@@ -386,7 +351,7 @@ with gr.Blocks(title="Rubii TTS", theme=gr.themes.Soft()) as demo:
|
|
386 |
|
387 |
if __name__ == '__main__':
|
388 |
demo.queue(default_concurrency_limit=8).launch(
|
389 |
-
|
390 |
-
|
391 |
show_api=False
|
392 |
)
|
|
|
|
|
1 |
import time
|
2 |
import os
|
3 |
import logging
|
|
|
5 |
import gradio as gr
|
6 |
import pandas as pd
|
7 |
from pypinyin import lazy_pinyin
|
8 |
+
from gradio_i18n import gettext, Translate
|
9 |
|
10 |
from api import generate_api
|
11 |
|
|
|
20 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
21 |
|
22 |
|
23 |
+
header = "## 🎉 Welcome to Rubii Voice Synthesis System 🎉\n \n#### [🗣️ Want to not just hear the characters' voices, but also interact with them? Click here to experience lively conversations with these characters! 🌟](https://rubii.ai)\n\n📝 Instructions:\n1. Select character category 🎭\n2. Choose one or more characters from the gallery (up to 5) 👥. When multiple characters are selected, the system will automatically blend their voices (with the first character as the main voice and others as supporting voices). You can try different combinations to get unique voice effects.\n3. Select the character's emotion 😊😢😠\n4. Enter the text to be synthesized ✍️\n5. Click the \"Synthesize Speech\" button 🔊"
|
|
|
24 |
|
25 |
+
terms = "## Disclaimer\n\nThe voice synthesis service provided by this website (hereinafter referred to as the \"Service\") is intended for personal use and entertainment purposes. Before using this Service, please carefully read and fully understand the following terms:\n\n1. **Character Copyright**: The character images used on this website may involve third-party intellectual property rights. This website does not own the copyrights to these characters. Users should respect the intellectual property rights of the relevant characters when using the Service and ensure that their actions do not infringe upon any third-party intellectual property rights.\n\n2. **User-Generated Content (UGC)**: The voice content generated by users through this platform (hereinafter referred to as \"UGC\") is the sole responsibility of the users and is not related to this platform. This platform cannot control or review the specific content generated by users and does not assume any responsibility for the accuracy, completeness, or legality of UGC.\n\n3. **Usage Restrictions**: The voices and their UGC generated by this Service are limited to personal use only and may not be used for any commercial purposes. It is prohibited to use the generated content for any commercial activities without prior written consent from this platform.\n\n4. **Legal Responsibility**: Any legal responsibility arising from the use of this Service by users shall be borne by the users themselves and is not related to this platform. This platform does not assume any responsibility for any disputes or losses caused by users' use of the Service or their UGC.\n\n5. **Copyright Statement**: Users should respect original creations and must not use this Service to generate content that infringes upon others' copyrights. If user-generated content is found to infringe upon others' copyrights, this platform reserves the right to immediately cease providing services to them and reserves the right to pursue legal action.\n\n6. **Content Moderation**: Although this platform cannot control UGC, once content that violates this disclaimer or laws and regulations is discovered, this platform will take necessary measures, including but not limited to deleting the violating content and cooperating with relevant authorities in investigations.\n\n7. **Attribution Requirement**: Users should, where possible, prominently indicate \"This content was generated by RubiiTTS\" or a similar statement in the generated content. Users should ensure that the attribution complies with the requirements of these terms.\n\nBy using this website, users agree to the above disclaimer. If you have any questions, please contact us at [email protected].\n\n**The final interpretation right belongs to this website.**"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
def load_characters_csv(lang):
|
28 |
+
csv_file = os.path.join(os.path.dirname(__file__), "i18n", f"characters_{lang}.csv")
|
29 |
+
return pd.read_csv(csv_file)
|
30 |
|
31 |
def update_all_characters(lang, current_all_characters):
|
32 |
new_characters = load_characters_csv(lang)
|
|
|
113 |
elif lang == "ko":
|
114 |
raise gr.Error("텍스트 길이가 512자를 초과합니다")
|
115 |
|
116 |
+
logging.info(f"选择角色: {characters[0].get('名称')}, 文本: {text}, voice_id: {voice_ids}")
|
117 |
audio = await generate_api(voice_ids, text)
|
118 |
end_time = time.time()
|
119 |
if lang == "zh":
|
|
|
226 |
return selected["名称"], gr.Dropdown(choices=emotions, value=default_emotion), character_dict, selected_characters
|
227 |
|
228 |
with gr.Blocks(title="Rubii TTS", theme=gr.themes.Soft()) as demo:
|
229 |
+
lang = gr.Radio(choices=[("中文", "zh"), ("English", "en"), ("日本語", "ja"), ("한국인", "ko")], label=gettext("Language"), value="en", scale=1)
|
230 |
+
all_characters_state = gr.State(load_characters_csv("en"))
|
231 |
|
232 |
with Translate(trans_file, lang, placeholder_langs=["en", "zh", "ja", "ko"]):
|
233 |
gr.Markdown(
|
234 |
+
value=gettext(header))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
235 |
with gr.Group():
|
236 |
initial_characters = get_characters(kind="原神", lang="zh", all_characters=all_characters_state.value)
|
237 |
characters = gr.State(initial_characters)
|
|
|
241 |
with gr.Blocks():
|
242 |
with gr.Row():
|
243 |
# kind = gr.Dropdown(choices=["原神", "崩坏星穹铁道","鸣潮","明日方舟","其他"], value="原神", label="请选择角色类别")
|
244 |
+
choices = [(gettext("Genshin Impact"),"原神"), (gettext("Honkai: Star Rail"),"崩坏星穹铁道"), (gettext("Wuthering Waves"),"鸣潮")]
|
245 |
+
kind = gr.Dropdown(choices=choices, value="原神", label=gettext("Select character category"))
|
246 |
+
query = gr.Textbox(label=gettext("Search character"), value="", lines=1, max_lines=1, interactive=True)
|
247 |
with gr.Blocks():
|
248 |
gallery = gr.Gallery(
|
249 |
value=[[char['头像'], char['名称']] for char in characters.value],
|
|
|
257 |
selected_index=None
|
258 |
)
|
259 |
with gr.Row():
|
260 |
+
character_name = gr.Textbox(label=gettext("Currently selected character"), interactive=False, max_lines=1)
|
261 |
+
info_type = gr.Dropdown(choices=[], label=gettext("Select emotion"))
|
262 |
with gr.Row():
|
263 |
+
add_voice_button = gr.Button(gettext("Add new voice"), variant="primary")
|
264 |
|
265 |
selected_chars_container = gr.Column(elem_id="selected_chars_container", visible=False)
|
266 |
|
267 |
with selected_chars_container:
|
268 |
+
gr.Markdown(gettext("### Selected characters"))
|
269 |
selected_chars_rows = []
|
270 |
for i in range(5): # 假设最多选择5个角色
|
271 |
with gr.Row() as row:
|
272 |
+
name = gr.Textbox(label=gettext("Name"), interactive=False, max_lines=1)
|
273 |
+
emotion = gr.Textbox(label=gettext("Emotion"), interactive=False, max_lines=1)
|
274 |
+
delete_btn = gr.Button(gettext("Delete"), scale=0)
|
275 |
selected_chars_rows.append((name, emotion, delete_btn, row))
|
276 |
|
277 |
|
|
|
332 |
|
333 |
with gr.Row():
|
334 |
with gr.Column():
|
335 |
+
text = gr.Textbox(label=gettext("Text to synthesize"), value="", lines=10, max_lines=10)
|
336 |
+
inference_button = gr.Button(gettext("🎉 Synthesize Voice 🎉"), variant="primary", size='lg')
|
337 |
with gr.Column():
|
338 |
+
output = gr.Audio(label=gettext("Output audio"), interactive=False, type="numpy")
|
339 |
+
cost_time = gr.Textbox(label=gettext("Synthesis time"), interactive=False, show_label=False, max_lines=1)
|
340 |
try:
|
341 |
inference_button.click(
|
342 |
fn=generate,
|
|
|
351 |
|
352 |
if __name__ == '__main__':
|
353 |
demo.queue(default_concurrency_limit=8).launch(
|
354 |
+
server_name="0.0.0.0",
|
355 |
+
server_port=80,
|
356 |
show_api=False
|
357 |
)
|
i18n/translations.json
CHANGED
@@ -1,86 +1,86 @@
|
|
1 |
{
|
2 |
"en": {
|
3 |
"Language": "Language",
|
4 |
-
"## 🎉
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"###
|
14 |
-
"
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"
|
18 |
-
"🎉
|
19 |
-
"
|
20 |
-
"
|
21 |
-
"##
|
22 |
},
|
23 |
"zh": {
|
24 |
"Language": "语言",
|
25 |
-
"## 🎉
|
26 |
-
"
|
27 |
-
"
|
28 |
-
"
|
29 |
-
"
|
30 |
-
"
|
31 |
-
"
|
32 |
-
"
|
33 |
-
"
|
34 |
-
"###
|
35 |
-
"
|
36 |
-
"
|
37 |
-
"
|
38 |
-
"
|
39 |
-
"🎉
|
40 |
-
"
|
41 |
-
"
|
42 |
-
"##
|
43 |
},
|
44 |
"ja": {
|
45 |
"Language": "Language",
|
46 |
-
"## 🎉
|
47 |
-
"
|
48 |
-
"
|
49 |
-
"
|
50 |
-
"
|
51 |
-
"
|
52 |
-
"
|
53 |
-
"
|
54 |
-
"
|
55 |
-
"###
|
56 |
-
"
|
57 |
-
"
|
58 |
-
"
|
59 |
-
"
|
60 |
-
"🎉
|
61 |
-
"
|
62 |
-
"
|
63 |
-
"##
|
64 |
},
|
65 |
"ko": {
|
66 |
"Language": "Language",
|
67 |
-
"## 🎉
|
68 |
-
"
|
69 |
-
"
|
70 |
-
"
|
71 |
-
"
|
72 |
-
"
|
73 |
-
"
|
74 |
-
"
|
75 |
-
"
|
76 |
-
"###
|
77 |
-
"
|
78 |
-
"
|
79 |
-
"
|
80 |
-
"
|
81 |
-
"🎉
|
82 |
-
"
|
83 |
-
"
|
84 |
-
"##
|
85 |
}
|
86 |
}
|
|
|
1 |
{
|
2 |
"en": {
|
3 |
"Language": "Language",
|
4 |
+
"## 🎉 Welcome to Rubii Voice Synthesis System 🎉\n \n#### [🗣️ Want to not just hear the characters' voices, but also interact with them? Click here to experience lively conversations with these characters! 🌟](https://rubii.ai)\n\n📝 Instructions:\n1. Select character category 🎭\n2. Choose one or more characters from the gallery (up to 5) 👥. When multiple characters are selected, the system will automatically blend their voices (with the first character as the main voice and others as supporting voices). You can try different combinations to get unique voice effects.\n3. Select the character's emotion 😊😢😠\n4. Enter the text to be synthesized ✍️\n5. Click the \"Synthesize Speech\" button 🔊": "## 🎉 Welcome to Rubii Voice Synthesis System 🎉\n \n#### [🗣️ Want to not just hear the characters' voices, but also interact with them? Click here to experience lively conversations with these characters! 🌟](https://rubii.ai)\n\n📝 Instructions:\n1. Select character category 🎭\n2. Choose one or more characters from the gallery (up to 5) 👥. When multiple characters are selected, the system will automatically blend their voices (with the first character as the main voice and others as supporting voices). You can try different combinations to get unique voice effects.\n3. Select the character's emotion 😊😢😠\n4. Enter the text to be synthesized ✍️\n5. Click the \"Synthesize Speech\" button 🔊",
|
5 |
+
"Genshin Impact": "Genshin Impact",
|
6 |
+
"Honkai: Star Rail": "Honkai: Star Rail",
|
7 |
+
"Wuthering Waves": "Wuthering Waves",
|
8 |
+
"Select character category": "Select character category",
|
9 |
+
"Search character": "Search character",
|
10 |
+
"Currently selected character": "Currently selected character",
|
11 |
+
"Select emotion": "Select emotion",
|
12 |
+
"Add new voice": "Add new voice",
|
13 |
+
"### Selected characters": "### Selected characters",
|
14 |
+
"Name": "Name",
|
15 |
+
"Emotion": "Emotion",
|
16 |
+
"Delete": "Delete",
|
17 |
+
"Text to synthesize": "Text to synthesize",
|
18 |
+
"🎉 Synthesize Voice 🎉": "🎉 Synthesize Voice 🎉",
|
19 |
+
"Output audio": "Output audio",
|
20 |
+
"Synthesis time": "Synthesis time",
|
21 |
+
"## Disclaimer\n\nThe voice synthesis service provided by this website (hereinafter referred to as the \"Service\") is intended for personal use and entertainment purposes. Before using this Service, please carefully read and fully understand the following terms:\n\n1. **Character Copyright**: The character images used on this website may involve third-party intellectual property rights. This website does not own the copyrights to these characters. Users should respect the intellectual property rights of the relevant characters when using the Service and ensure that their actions do not infringe upon any third-party intellectual property rights.\n\n2. **User-Generated Content (UGC)**: The voice content generated by users through this platform (hereinafter referred to as \"UGC\") is the sole responsibility of the users and is not related to this platform. This platform cannot control or review the specific content generated by users and does not assume any responsibility for the accuracy, completeness, or legality of UGC.\n\n3. **Usage Restrictions**: The voices and their UGC generated by this Service are limited to personal use only and may not be used for any commercial purposes. It is prohibited to use the generated content for any commercial activities without prior written consent from this platform.\n\n4. **Legal Responsibility**: Any legal responsibility arising from the use of this Service by users shall be borne by the users themselves and is not related to this platform. This platform does not assume any responsibility for any disputes or losses caused by users' use of the Service or their UGC.\n\n5. **Copyright Statement**: Users should respect original creations and must not use this Service to generate content that infringes upon others' copyrights. If user-generated content is found to infringe upon others' copyrights, this platform reserves the right to immediately cease providing services to them and reserves the right to pursue legal action.\n\n6. **Content Moderation**: Although this platform cannot control UGC, once content that violates this disclaimer or laws and regulations is discovered, this platform will take necessary measures, including but not limited to deleting the violating content and cooperating with relevant authorities in investigations.\n\n7. **Attribution Requirement**: Users should, where possible, prominently indicate \"This content was generated by RubiiTTS\" or a similar statement in the generated content. Users should ensure that the attribution complies with the requirements of these terms.\n\nBy using this website, users agree to the above disclaimer. If you have any questions, please contact us at contact@yomio.ai.\n\n**The final interpretation right belongs to this website.**": "## Disclaimer\n\nThe voice synthesis service provided by this website (hereinafter referred to as the \"Service\") is intended for personal use and entertainment purposes. Before using this Service, please carefully read and fully understand the following terms:\n\n1. **Character Copyright**: The character images used on this website may involve third-party intellectual property rights. This website does not own the copyrights to these characters. Users should respect the intellectual property rights of the relevant characters when using the Service and ensure that their actions do not infringe upon any third-party intellectual property rights.\n\n2. **User-Generated Content (UGC)**: The voice content generated by users through this platform (hereinafter referred to as \"UGC\") is the sole responsibility of the users and is not related to this platform. This platform cannot control or review the specific content generated by users and does not assume any responsibility for the accuracy, completeness, or legality of UGC.\n\n3. **Usage Restrictions**: The voices and their UGC generated by this Service are limited to personal use only and may not be used for any commercial purposes. It is prohibited to use the generated content for any commercial activities without prior written consent from this platform.\n\n4. **Legal Responsibility**: Any legal responsibility arising from the use of this Service by users shall be borne by the users themselves and is not related to this platform. This platform does not assume any responsibility for any disputes or losses caused by users' use of the Service or their UGC.\n\n5. **Copyright Statement**: Users should respect original creations and must not use this Service to generate content that infringes upon others' copyrights. If user-generated content is found to infringe upon others' copyrights, this platform reserves the right to immediately cease providing services to them and reserves the right to pursue legal action.\n\n6. **Content Moderation**: Although this platform cannot control UGC, once content that violates this disclaimer or laws and regulations is discovered, this platform will take necessary measures, including but not limited to deleting the violating content and cooperating with relevant authorities in investigations.\n\n7. **Attribution Requirement**: Users should, where possible, prominently indicate \"This content was generated by RubiiTTS\" or a similar statement in the generated content. Users should ensure that the attribution complies with the requirements of these terms.\n\nBy using this website, users agree to the above disclaimer. If you have any questions, please contact us at [email protected].\n\n**The final interpretation right belongs to this website.**"
|
22 |
},
|
23 |
"zh": {
|
24 |
"Language": "语言",
|
25 |
+
"## 🎉 Welcome to Rubii Voice Synthesis System 🎉\n \n#### [🗣️ Want to not just hear the characters' voices, but also interact with them? Click here to experience lively conversations with these characters! 🌟](https://rubii.ai)\n\n📝 Instructions:\n1. Select character category 🎭\n2. Choose one or more characters from the gallery (up to 5) 👥. When multiple characters are selected, the system will automatically blend their voices (with the first character as the main voice and others as supporting voices). You can try different combinations to get unique voice effects.\n3. Select the character's emotion 😊😢😠\n4. Enter the text to be synthesized ✍️\n5. Click the \"Synthesize Speech\" button 🔊": "## 🎉 欢迎使用Rubii语音合成系统 🎉\n \n#### [🗣️ 不想只是听到角色的声音,还想与他们进行互动交流吗?快点击我来体验与这些角色的生动对话吧!🌟](https://rubii.ai)\n\n📝 使用说明:\n1. 选择角色类别 🎭\n2. 从图库中选择一个或多个角色(最多5个) 👥。当选择多个角色时,系统会自动进行声线融合(以第一个角色为主音色,其他角色为辅助音色),您可以尝试不同的组合来获得独特的声音效果。\n3. 选择角色的情绪 😊😢😠\n4. 输入要合成的文本 ✍️\n5. 点击\"合成语音\"按钮 🔊",
|
26 |
+
"Genshin Impact": "原神",
|
27 |
+
"Honkai: Star Rail": "崩坏星穹铁道",
|
28 |
+
"Wuthering Waves": "鸣潮",
|
29 |
+
"Select character category": "选择角色类别",
|
30 |
+
"Search character": "搜索角色",
|
31 |
+
"Currently selected character": "当前选择的角色",
|
32 |
+
"Select emotion": "选择情绪",
|
33 |
+
"Add new voice": "添加新的声音",
|
34 |
+
"### Selected characters": "### 已选择的角色",
|
35 |
+
"Name": "名称",
|
36 |
+
"Emotion": "情绪",
|
37 |
+
"Delete": "删除",
|
38 |
+
"Text to synthesize": "需要合成的文本",
|
39 |
+
"🎉 Synthesize Voice 🎉": "🎉 合成语音 🎉",
|
40 |
+
"Output audio": "输出的语音",
|
41 |
+
"Synthesis time": "合成时间",
|
42 |
+
"## Disclaimer\n\nThe voice synthesis service provided by this website (hereinafter referred to as the \"Service\") is intended for personal use and entertainment purposes. Before using this Service, please carefully read and fully understand the following terms:\n\n1. **Character Copyright**: The character images used on this website may involve third-party intellectual property rights. This website does not own the copyrights to these characters. Users should respect the intellectual property rights of the relevant characters when using the Service and ensure that their actions do not infringe upon any third-party intellectual property rights.\n\n2. **User-Generated Content (UGC)**: The voice content generated by users through this platform (hereinafter referred to as \"UGC\") is the sole responsibility of the users and is not related to this platform. This platform cannot control or review the specific content generated by users and does not assume any responsibility for the accuracy, completeness, or legality of UGC.\n\n3. **Usage Restrictions**: The voices and their UGC generated by this Service are limited to personal use only and may not be used for any commercial purposes. It is prohibited to use the generated content for any commercial activities without prior written consent from this platform.\n\n4. **Legal Responsibility**: Any legal responsibility arising from the use of this Service by users shall be borne by the users themselves and is not related to this platform. This platform does not assume any responsibility for any disputes or losses caused by users' use of the Service or their UGC.\n\n5. **Copyright Statement**: Users should respect original creations and must not use this Service to generate content that infringes upon others' copyrights. If user-generated content is found to infringe upon others' copyrights, this platform reserves the right to immediately cease providing services to them and reserves the right to pursue legal action.\n\n6. **Content Moderation**: Although this platform cannot control UGC, once content that violates this disclaimer or laws and regulations is discovered, this platform will take necessary measures, including but not limited to deleting the violating content and cooperating with relevant authorities in investigations.\n\n7. **Attribution Requirement**: Users should, where possible, prominently indicate \"This content was generated by RubiiTTS\" or a similar statement in the generated content. Users should ensure that the attribution complies with the requirements of these terms.\n\nBy using this website, users agree to the above disclaimer. If you have any questions, please contact us at contact@yomio.ai.\n\n**The final interpretation right belongs to this website.**": "## 免责声明\n\n本网站提供的语音合成服务(以下简称“服务”)旨在供个人使用和娱乐目的。在使用本服务前,请用户仔细阅读并充分理解以下条款:\n\n1. **角色版权**:本网站可能使用的角色形象涉及第三方知识产权。本网站不拥有这些角色的版权。用户在使用服务时应尊重相关角色的知识产权,并确保其行为不侵犯任何第三方的知识产权。\n\n2. **用户生成内容(UGC)**:用户通过本平台生成的语音内容(以下简称“UGC”)由用户自行负责,与本平台无关。本平台无法控制或审核用户生成的具体内容,且不对UGC的准确性、完整性或合法性承担任何责任。\n\n3. **使用限制**:本服务生成的语音及其UGC仅限于个人使用,不得用于任何商业目的。未经本平台事先书面同意,禁止将生成内容用于任何商业活动。\n\n4. **法律责任**:用户使用本服务所产生的任何法律责任由用户自行承担,与本平台无关。如因用户使用服务或其UGC导致的任何纠纷或损失,本平台不承担任何责任。\n\n5. **版权声明**:用户应尊重原创,不得使用本服务生成侵犯他人著作权的内容。如发现用户生成内容侵犯他人版权,本平台有权立即停止对其提供服务,并保留追究法律责任的权利。\n\n6. **内容监管**:尽管本平台无法控制UGC,但一旦发现违反本免责声明或法律法规的内容,本平台将采取必要措施,包括但不限于删除违规内容,并配合有关部门进行调查。\n\n7. **注明要求**:用户应在生成内容的显著位置,如可能的话,注明“此内容由RubiiTTS生成”或类似的说明。用户应确保注明行为符合本条款的要求。\n\n用户使用本网站即表示同意以上免责声明。如有疑问,请联系我们[email protected]。\n\n**最终解释权归本网站所有。**"
|
43 |
},
|
44 |
"ja": {
|
45 |
"Language": "Language",
|
46 |
+
"## 🎉 Welcome to Rubii Voice Synthesis System 🎉\n \n#### [🗣️ Want to not just hear the characters' voices, but also interact with them? Click here to experience lively conversations with these characters! 🌟](https://rubii.ai)\n\n📝 Instructions:\n1. Select character category 🎭\n2. Choose one or more characters from the gallery (up to 5) 👥. When multiple characters are selected, the system will automatically blend their voices (with the first character as the main voice and others as supporting voices). You can try different combinations to get unique voice effects.\n3. Select the character's emotion 😊😢😠\n4. Enter the text to be synthesized ✍️\n5. Click the \"Synthesize Speech\" button 🔊": "## 🎉 Rubii音声合成システムへようこそ 🎉\n \n#### [🗣️ キャラクターの声を聞くだけでなく、彼らと対話したいですか?ここをクリックして、これらのキャラクターとの生き生きとした会話を体験しましょう!🌟](https://rubii.ai)\n\n📝 使用説明:\n1. キャラクターカテゴリーを選択 🎭\n2. ギャラリーから1つまたは複数のキャラクター(最大5つ)を選択 👥。複数のキャラクターを選択すると、システムは自動的に声線を融合します(最初のキャラクターをメインボイス、他のキャラクターをサブボイスとして)。異なる組み合わせを試して、ユニークな音声効果を得ることができます。\n3. キャラクターの感情を選択 😊😢😠\n4. 合成するテキストを入力 ✍️\n5. \"音声合成\"ボタンをクリック 🔊",
|
47 |
+
"Genshin Impact": "原神[げんしん",
|
48 |
+
"Honkai: Star Rail": "崩壊:スターレイル",
|
49 |
+
"Wuthering Waves": "Wuthering Waves",
|
50 |
+
"Select character category": "キャラクターカテゴリーを選択",
|
51 |
+
"Search character": "キャラクターを検索",
|
52 |
+
"Currently selected character": "現在選択されているキャラクター",
|
53 |
+
"Select emotion": "感情を選択",
|
54 |
+
"Add new voice": "新しい声を追加",
|
55 |
+
"### Selected characters": "### 選択されたキャラクター",
|
56 |
+
"Name": "名前",
|
57 |
+
"Emotion": "感情",
|
58 |
+
"Delete": "削除",
|
59 |
+
"Text to synthesize": "合成するテキスト",
|
60 |
+
"🎉 Synthesize Voice 🎉": "🎉 音声を合成 🎉",
|
61 |
+
"Output audio": "出力された音声",
|
62 |
+
"Synthesis time": "合成時間",
|
63 |
+
"## Disclaimer\n\nThe voice synthesis service provided by this website (hereinafter referred to as the \"Service\") is intended for personal use and entertainment purposes. Before using this Service, please carefully read and fully understand the following terms:\n\n1. **Character Copyright**: The character images used on this website may involve third-party intellectual property rights. This website does not own the copyrights to these characters. Users should respect the intellectual property rights of the relevant characters when using the Service and ensure that their actions do not infringe upon any third-party intellectual property rights.\n\n2. **User-Generated Content (UGC)**: The voice content generated by users through this platform (hereinafter referred to as \"UGC\") is the sole responsibility of the users and is not related to this platform. This platform cannot control or review the specific content generated by users and does not assume any responsibility for the accuracy, completeness, or legality of UGC.\n\n3. **Usage Restrictions**: The voices and their UGC generated by this Service are limited to personal use only and may not be used for any commercial purposes. It is prohibited to use the generated content for any commercial activities without prior written consent from this platform.\n\n4. **Legal Responsibility**: Any legal responsibility arising from the use of this Service by users shall be borne by the users themselves and is not related to this platform. This platform does not assume any responsibility for any disputes or losses caused by users' use of the Service or their UGC.\n\n5. **Copyright Statement**: Users should respect original creations and must not use this Service to generate content that infringes upon others' copyrights. If user-generated content is found to infringe upon others' copyrights, this platform reserves the right to immediately cease providing services to them and reserves the right to pursue legal action.\n\n6. **Content Moderation**: Although this platform cannot control UGC, once content that violates this disclaimer or laws and regulations is discovered, this platform will take necessary measures, including but not limited to deleting the violating content and cooperating with relevant authorities in investigations.\n\n7. **Attribution Requirement**: Users should, where possible, prominently indicate \"This content was generated by RubiiTTS\" or a similar statement in the generated content. Users should ensure that the attribution complies with the requirements of these terms.\n\nBy using this website, users agree to the above disclaimer. If you have any questions, please contact us at contact@yomio.ai.\n\n**The final interpretation right belongs to this website.**": "## 免責事項\n\n本ウェ��サイトが提供する音声合成サービス(以下「サービス」という)は、個人使用および娯楽目的のために提供されています。本サービスをご利用になる前に、以下の条項を注意深くお読みいただき、十分にご理解ください:\n\n1. **キャラクターの著作権**:本ウェブサイトで使用されているキャラクターイメージは、第三者の知的財産権に関わる可能性があります。本ウェブサイトはこれらのキャラクターの著作権を所有していません。ユーザーはサービスを利用する際、関連するキャラクターの知的財産権を尊重し、第三者の知的財産権を侵害しないよう確保する必要があります。\n\n2. **ユーザー生成コンテンツ(UGC)**:ユーザーが本プラットフォームを通じて生成した音声コンテンツ(以下「UGC」という)は、ユーザー自身の責任であり、本プラットフォームとは無関係です。本プラットフォームはユーザーが生成した具体的なコンテンツを制御または審査することはできず、UGCの正確性、完全性、または合法性について一切の責任を負いません。\n\n3. **使用制限**:本サービスで生成された音声およびそのUGCは個人使用に限定され、商業目的での使用は禁止されています。本プラットフォームの事前の書面による同意なしに、生成されたコンテンツを商業活動に使用することは禁止されています。\n\n4. **法的責任**:ユーザーが本サービスを利用することによって生じるいかなる法的責任も、ユーザー自身が負うものとし、本プラットフォームとは無関係です。ユーザーのサービス利用またはそのUGCに起因するいかなる紛争や損失についても、本プラットフォームは一切の責任を負いません。\n\n5. **著作権声明**:ユーザーは創作物を尊重し、他人の著作権を侵害するコンテンツを本サービスで生成してはいけません。ユーザーが生成したコンテンツが他人の著作権を侵害していることが発見された場合、本プラットフォームはただちにサービスの提供を停止する権利を有し、法的責任を追及する権利を留保します。\n\n6. **コンテンツ監視**:本プラットフォームはUGCを制御できませんが、本免責事項や法律規制に違反するコンテンツが発見された場合、本プラットフォームは必要な措置を講じます。これには違反コンテンツの削除や関係機関との調査協力が含まれますが、これらに限定されません。\n\n7. **表示要件**:ユーザーは生成されたコンテンツの目立つ位置に、可能な限り「このコンテンツはRubiiTTSによって生成されました」または類似の説明を表示する必要があります。ユーザーはこの表示行為が本条項の要件に適合していることを確認する必要があります。\n\nユーザーが本ウェブサイトを利用することは、上記の免責事項に同意したことを意味します。ご質問がある場合は、[email protected]までお問い合わせください。\n\n**最終的な解釈権は本ウェブサイトに帰属します。**"
|
64 |
},
|
65 |
"ko": {
|
66 |
"Language": "Language",
|
67 |
+
"## 🎉 Welcome to Rubii Voice Synthesis System 🎉\n \n#### [🗣️ Want to not just hear the characters' voices, but also interact with them? Click here to experience lively conversations with these characters! 🌟](https://rubii.ai)\n\n📝 Instructions:\n1. Select character category 🎭\n2. Choose one or more characters from the gallery (up to 5) 👥. When multiple characters are selected, the system will automatically blend their voices (with the first character as the main voice and others as supporting voices). You can try different combinations to get unique voice effects.\n3. Select the character's emotion 😊😢😠\n4. Enter the text to be synthesized ✍️\n5. Click the \"Synthesize Speech\" button 🔊": "## 🎉 Rubii 음성 합성 시스템에 오신 것을 환영합니다 🎉\n \n#### [🗣️ 캐릭터의 목소리를 듣는 것뿐만 아니라 그들과 상호작용하고 싶으신가요? 여기를 클릭하여 이 캐릭터들과의 생동감 있는 대화를 경험해보세요! 🌟](https://rubii.ai)\n\n📝 사용 설명:\n1. 캐릭터 카테고리 선택 🎭\n2. 갤러리에서 하나 또는 여러 캐릭터 선택(최대 5개) 👥. 여러 캐릭터를 선택하면 시스템이 자동으로 음성을 융합합니다(첫 번째 캐릭터를 주 음색으로, 다른 캐릭터들을 보조 음색으로). 다양한 조합을 시도하여 독특한 음성 효과를 얻을 수 있습니다.\n3. 캐릭터의 감정 선택 😊😢😠\n4. 합성할 텍스트 입력 ✍️\n5. \"음성 합성\" 버튼 클릭 🔊",
|
68 |
+
"Genshin Impact": "원신",
|
69 |
+
"Honkai: Star Rail": "붕괴: 스타레일",
|
70 |
+
"Wuthering Waves": "Wuthering Waves",
|
71 |
+
"Select character category": "캐릭터 카테고리 선택",
|
72 |
+
"Search character": "캐릭터 검색",
|
73 |
+
"Currently selected character": "현재 선택된 캐릭터",
|
74 |
+
"Select emotion": "감정 선택",
|
75 |
+
"Add new voice": "새로운 음성 추가",
|
76 |
+
"### Selected characters": "### 선택된 캐릭터",
|
77 |
+
"Name": "이름",
|
78 |
+
"Emotion": "감정",
|
79 |
+
"Delete": "삭제",
|
80 |
+
"Text to synthesize": "합성할 텍스트",
|
81 |
+
"🎉 Synthesize Voice 🎉": "🎉 음성 합성 🎉",
|
82 |
+
"Output audio": "출력된 음성",
|
83 |
+
"Synthesis time": "합성 시간",
|
84 |
+
"## Disclaimer\n\nThe voice synthesis service provided by this website (hereinafter referred to as the \"Service\") is intended for personal use and entertainment purposes. Before using this Service, please carefully read and fully understand the following terms:\n\n1. **Character Copyright**: The character images used on this website may involve third-party intellectual property rights. This website does not own the copyrights to these characters. Users should respect the intellectual property rights of the relevant characters when using the Service and ensure that their actions do not infringe upon any third-party intellectual property rights.\n\n2. **User-Generated Content (UGC)**: The voice content generated by users through this platform (hereinafter referred to as \"UGC\") is the sole responsibility of the users and is not related to this platform. This platform cannot control or review the specific content generated by users and does not assume any responsibility for the accuracy, completeness, or legality of UGC.\n\n3. **Usage Restrictions**: The voices and their UGC generated by this Service are limited to personal use only and may not be used for any commercial purposes. It is prohibited to use the generated content for any commercial activities without prior written consent from this platform.\n\n4. **Legal Responsibility**: Any legal responsibility arising from the use of this Service by users shall be borne by the users themselves and is not related to this platform. This platform does not assume any responsibility for any disputes or losses caused by users' use of the Service or their UGC.\n\n5. **Copyright Statement**: Users should respect original creations and must not use this Service to generate content that infringes upon others' copyrights. If user-generated content is found to infringe upon others' copyrights, this platform reserves the right to immediately cease providing services to them and reserves the right to pursue legal action.\n\n6. **Content Moderation**: Although this platform cannot control UGC, once content that violates this disclaimer or laws and regulations is discovered, this platform will take necessary measures, including but not limited to deleting the violating content and cooperating with relevant authorities in investigations.\n\n7. **Attribution Requirement**: Users should, where possible, prominently indicate \"This content was generated by RubiiTTS\" or a similar statement in the generated content. Users should ensure that the attribution complies with the requirements of these terms.\n\nBy using this website, users agree to the above disclaimer. If you have any questions, please contact us at contact@yomio.ai.\n\n**The final interpretation right belongs to this website.**": "## 면책 조항\n\n본 웹사이트에서 제공하는 음성 합성 서비스(이하 \"서비스\")는 개인 사용 및 엔터테인먼트 목적으로 제공됩니다. 본 서비스를 사용하기 전에 사용자는 다음 조항을 주의 깊게 읽고 충분히 이해해야 합니다:\n\n1. **캐릭터 저작권**: 본 웹사이트에서 사용되는 캐릭터 이미지는 제3자의 지적 재산권과 관련될 수 있습니다. 본 웹사이트는 이러한 캐릭터들의 저작권을 소유하고 있지 않습니다. 사용자는 서비스를 사용할 때 관련 캐릭터의 지적 재산권을 존중해야 하며, 제3자의 지적 재산권을 침해하지 않도록 해야 합니다.\n\n2. **사용자 생성 콘텐츠(UGC)**: 사용자가 본 플랫폼을 통해 생성한 음성 콘텐츠(이하 \"UGC\")는 사용자 본인의 책임이며, 본 플랫폼과는 무관합니다. 본 플랫폼은 사용자가 생성한 구체적인 내용을 통제하거나 검토할 수 없으며, UGC의 정확성, 완전성 또는 합법성에 대해 어떠한 책임도 지지 않습니다.\n\n3. **사용 제한**: 본 서비스에서 생성된 음성 및 UGC는 개인 사용에 한정되며, 상업적 목적으로 사용할 수 없습니다. 본 플랫폼의 사전 서면 동의 없이 생성된 콘텐츠를 상업적 활동에 사용하는 것은 금지됩니다.\n\n4. **법적 책임**: 사용자가 본 서비스를 사용함으로써 발생하는 모든 법적 책임은 사용자 본인이 부담하며, 본 플랫폼과는 무관합니다. 사용자의 서비스 사용 또는 UGC로 인해 발생하는 모든 분쟁이나 손실에 대해 본 플랫폼은 어떠한 책임도 지지 않습니다.\n\n5. **저작권 선언**: 사용자는 창작물을 존중해야 하며, 본 서비스를 사용하여 타인의 저작권을 침해하는 콘텐츠를 생성해서는 안 됩니다. 사용자가 생성한 콘텐츠가 타인의 저작권을 침해한 것이 발견될 경우, 본 플랫폼은 즉시 서비스 제공을 중단할 권리가 있으며, 법적 책임을 추궁할 권리를 보유합니다.\n\n6. **콘텐츠 관리**: 본 플랫폼은 UGC를 통제할 수 없지만, 본 면책 조항이나 법규를 위반하는 내용이 발견될 경우, 본 플랫폼은 필요한 조치를 취할 것입니다. 이는 위반 콘텐츠 삭제 및 관련 부서와의 조사 협력을 포함하지만 이에 국한되지 않습니다.\n\n7. **표시 요구 사항**: 사용자는 생성된 콘텐츠의 눈에 띄는 위치에 가능한 한 \"이 콘텐츠는 RubiiTTS에 의해 생성되었습니다\" 또는 유사한 설명을 표시해야 합니다. 사용자는 이 표시 행위가 본 조항의 요구 사항을 준수하는지 확인해야 합니다.\n\n사용자가 본 웹사이트를 사용하는 것은 위의 면책 조항에 동의한다는 의미입니다. 문의 사항이 있으시면 [email protected]로 연락해 주시기 바랍니다.\n\n**최종 해석권은 본 웹사이트에 있습니다.**"
|
85 |
}
|
86 |
}
|