mirror of
https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git
synced 2025-04-05 04:08:58 +08:00
Add --share argument
This commit is contained in:
parent
252a90a0f6
commit
1ceb4477d4
@ -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(
|
||||
|
@ -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,
|
||||
|
@ -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"]
|
||||
|
@ -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(
|
||||
|
Loading…
x
Reference in New Issue
Block a user