Add --share argument

This commit is contained in:
VSlobolinskyi 2025-03-18 01:31:03 +02:00
parent 252a90a0f6
commit 1ceb4477d4
4 changed files with 8 additions and 3 deletions

View File

@ -78,6 +78,11 @@ class Config:
exe = sys.executable or "python"
parser = argparse.ArgumentParser()
parser.add_argument("--port", type=int, default=7865, help="Listen port")
parser.add_argument(
"--share",
action="store_true",
help="If set, create a shareable public link."
)
parser.add_argument("--pycmd", type=str, default=exe, help="Python command")
parser.add_argument("--colab", action="store_true", help="Launch in colab")
parser.add_argument(

View File

@ -1612,7 +1612,7 @@ with gr.Blocks(title="RVC WebUI") as app:
app.queue(concurrency_count=511, max_size=1022).launch(share=True)
else:
app.queue(concurrency_count=511, max_size=1022).launch(
server_name="0.0.0.0",
server_name="localhost",
inbrowser=not config.noautoopen,
server_port=config.listen_port,
quiet=True,

View File

@ -57,7 +57,7 @@ fastapi = "0.88"
torchfcpe = "^0.0.4"
ffmpy = "0.3.1"
torchvision = "0.19.0"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]

View File

@ -21,7 +21,7 @@ if __name__ == "__main__":
dl_model(RVC_DOWNLOAD_LINK, "hubert_base.pt", BASE_DIR / "assets/hubert")
print("Downloading rmvpe.pt...")
dl_model(RVC_DOWNLOAD_LINK, "rmvpe.pt", BASE_DIR / "assets/rmvpe")
print("Downloading rmvpe.pt...")
print("Downloading rmvpe.onnx...")
dl_model(RVC_DOWNLOAD_LINK, "rmvpe.onnx", BASE_DIR / "assets/rmvpe")
print("Downloading vocals.onnx...")
dl_model(