Skip to content

Commit f09e70c

Browse files
author
NeoDev
authored
Update app.py
1 parent 56201d2 commit f09e70c

File tree

1 file changed

+7
-14
lines changed

1 file changed

+7
-14
lines changed

app.py

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import os
44
import logging
55
from typing import Any
6-
76
DEFAULT_SERVER_NAME = "127.0.0.1"
87
DEFAULT_PORT = 6969
98
MAX_PORT_ATTEMPTS = 10
@@ -25,9 +24,6 @@
2524

2625
# Run prerequisites
2726
from rvc.lib.tools.prerequisites_download import prerequisites_download_pipeline
28-
29-
30-
print("downloading models...")
3127
prerequisites_download_pipeline(models=True, exe=True)
3228

3329

@@ -42,31 +38,28 @@
4238
theme=my_theme, title="Advanced-RVC-Inference", css="footer{display:none !important}"
4339
) as adrvc:
4440
gr.Markdown("# Advanced-RVC-Inference")
45-
gr.Markdown("A simple, high-quality voice conversion tool focused on ease of use and performance.")
41+
gr.Markdown("Advanced RVC Inference for quicker and effortless model downloads.")
4642
gr.Markdown("[Support](https://discord.gg/hvmsukmBHE) — [GitHub](https://github.com/ArkanDash/Advanced-RVC-Inference.git)")
47-
43+
gr.Makrdown("Thanks to [NeoDev](https://github.com/TheNeodev) for improve this project")
4844

4945

5046
with gr.Tab("Inference"):
5147
inference_tab()
52-
53-
54-
5548
with gr.Tab("Download"):
5649
download_tab()
5750

58-
5951
with gr.Tab("Settings"):
6052
gr.Markdown("On Progress...")
6153
#settings_tab()
6254

6355
gr.Markdown(
64-
"""
65-
<div style="text-align: center; font-size: 0.9em; text-color: a3a3a3;">
66-
By using Advanced-RVC-Inference, you agree to comply with ethical and legal standards, respect intellectual property and privacy rights, avoid harmful or prohibited uses, and accept full responsibility for any outcomes, while Advanced-RVC-Inference disclaims liability and reserves the right to amend these terms.
56+
"""
57+
<div style="text-align: center; font-size: 0.9em; color: #a3a3a3;">
58+
<strong>Disclaimer:</strong> By accessing <span style="color: #555;">Advanced-RVC-Inference</span>, you acknowledge your responsibility to follow all ethical and legal standards, respect intellectual property and privacy rights, and accept full accountability for your actions. <br><br>
59+
Please note that Advanced-RVC-Inference disclaims all liability and reserves the right to update these terms at any time.
6760
</div>
6861
"""
69-
)
62+
)
7063

7164

7265
def launch_gradio(server_name: str, server_port: int) -> None:

0 commit comments

Comments
 (0)