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"
|
exe = sys.executable or "python"
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
parser.add_argument("--port", type=int, default=7865, help="Listen port")
|
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("--pycmd", type=str, default=exe, help="Python command")
|
||||||
parser.add_argument("--colab", action="store_true", help="Launch in colab")
|
parser.add_argument("--colab", action="store_true", help="Launch in colab")
|
||||||
parser.add_argument(
|
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)
|
app.queue(concurrency_count=511, max_size=1022).launch(share=True)
|
||||||
else:
|
else:
|
||||||
app.queue(concurrency_count=511, max_size=1022).launch(
|
app.queue(concurrency_count=511, max_size=1022).launch(
|
||||||
server_name="0.0.0.0",
|
server_name="localhost",
|
||||||
inbrowser=not config.noautoopen,
|
inbrowser=not config.noautoopen,
|
||||||
server_port=config.listen_port,
|
server_port=config.listen_port,
|
||||||
quiet=True,
|
quiet=True,
|
||||||
|
@ -57,7 +57,7 @@ fastapi = "0.88"
|
|||||||
torchfcpe = "^0.0.4"
|
torchfcpe = "^0.0.4"
|
||||||
ffmpy = "0.3.1"
|
ffmpy = "0.3.1"
|
||||||
torchvision = "0.19.0"
|
torchvision = "0.19.0"
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.group.dev.dependencies]
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core>=1.0.0"]
|
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")
|
dl_model(RVC_DOWNLOAD_LINK, "hubert_base.pt", BASE_DIR / "assets/hubert")
|
||||||
print("Downloading rmvpe.pt...")
|
print("Downloading rmvpe.pt...")
|
||||||
dl_model(RVC_DOWNLOAD_LINK, "rmvpe.pt", BASE_DIR / "assets/rmvpe")
|
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")
|
dl_model(RVC_DOWNLOAD_LINK, "rmvpe.onnx", BASE_DIR / "assets/rmvpe")
|
||||||
print("Downloading vocals.onnx...")
|
print("Downloading vocals.onnx...")
|
||||||
dl_model(
|
dl_model(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user