voice-changer/server/voice_changer/RVC/SampleDownloader.py

135 lines
4.1 KiB
Python
Raw Normal View History

2023-05-17 20:51:40 +03:00
from concurrent.futures import ThreadPoolExecutor
import os
from const import RVC_MODEL_DIRNAME, TMP_DIR
from Downloader import download, download_no_tqdm
from ModelSample import RVCModelSample, getModelSamples
from typing import Any
import json
def checkRvcModelExist(model_dir: str):
rvcModelDir = os.path.join(model_dir, RVC_MODEL_DIRNAME)
if not os.path.exists(rvcModelDir):
return False
return True
2023-05-20 09:54:00 +03:00
def downloadInitialSampleModels(sampleJsons: list[str], model_dir: str):
2023-05-17 20:51:40 +03:00
sampleModelIds = [
2023-05-25 05:40:37 +03:00
("TokinaShigure_o", True),
("KikotoMahiro_o", False),
("Amitaro_o", False),
("Tsukuyomi-chan_o", False),
2023-05-17 20:51:40 +03:00
]
2023-05-20 09:54:00 +03:00
sampleModels = getModelSamples(sampleJsons, "RVC")
2023-05-17 20:51:40 +03:00
if sampleModels is None:
return
downloadParams = []
slot_count = 0
line_num = 0
2023-05-25 05:40:37 +03:00
for initSampleId in sampleModelIds:
print(initSampleId)
# 初期サンプルをサーチ
match = False
for sample in sampleModels:
if sample.id == initSampleId[0]:
match = True
break
if match is False:
print(f"[Voice Changer] initiail sample not found. {initSampleId[0]}")
continue
2023-05-17 20:51:40 +03:00
2023-05-25 05:40:37 +03:00
# 検出されたら、、、
sampleParams: Any = {"files": {}}
slotDir = os.path.join(model_dir, RVC_MODEL_DIRNAME, str(slot_count))
os.makedirs(slotDir, exist_ok=True)
modelFilePath = os.path.join(
slotDir,
os.path.basename(sample.modelUrl),
)
downloadParams.append(
{
"url": sample.modelUrl,
"saveTo": modelFilePath,
"position": line_num,
}
)
sampleParams["files"]["rvcModel"] = modelFilePath
line_num += 1
if (
initSampleId[1] is True
and hasattr(sample, "indexUrl")
and sample.indexUrl != ""
):
indexPath = os.path.join(
2023-05-17 20:51:40 +03:00
slotDir,
2023-05-25 05:40:37 +03:00
os.path.basename(sample.indexUrl),
2023-05-17 20:51:40 +03:00
)
downloadParams.append(
{
2023-05-25 05:40:37 +03:00
"url": sample.indexUrl,
"saveTo": indexPath,
2023-05-17 20:51:40 +03:00
"position": line_num,
}
)
2023-05-25 05:40:37 +03:00
sampleParams["files"]["rvcIndex"] = indexPath
2023-05-17 20:51:40 +03:00
line_num += 1
2023-05-25 05:40:37 +03:00
sampleParams["sampleId"] = sample.id
sampleParams["defaultTune"] = 0
sampleParams["defaultIndexRatio"] = 1
sampleParams["credit"] = sample.credit
sampleParams["description"] = sample.description
sampleParams["name"] = sample.name
sampleParams["sampleId"] = sample.id
sampleParams["termsOfUseUrl"] = sample.termsOfUseUrl
sampleParams["sampleRate"] = sample.sampleRate
sampleParams["modelType"] = sample.modelType
sampleParams["f0"] = sample.f0
jsonFilePath = os.path.join(slotDir, "params.json")
json.dump(sampleParams, open(jsonFilePath, "w"))
slot_count += 1
2023-05-17 20:51:40 +03:00
print("[Voice Changer] Downloading model files...")
with ThreadPoolExecutor() as pool:
pool.map(download, downloadParams)
2023-05-25 05:40:37 +03:00
def downloadModelFiles(sampleInfo: RVCModelSample, useIndex: bool = True):
2023-05-17 20:51:40 +03:00
downloadParams = []
modelPath = os.path.join(TMP_DIR, os.path.basename(sampleInfo.modelUrl))
downloadParams.append(
{
"url": sampleInfo.modelUrl,
"saveTo": modelPath,
"position": 0,
}
)
indexPath = None
2023-05-25 05:40:37 +03:00
if (
useIndex is True
and hasattr(sampleInfo, "indexUrl")
and sampleInfo.indexUrl != ""
):
print("[Voice Changer] Download sample with index.")
2023-05-17 20:51:40 +03:00
indexPath = os.path.join(TMP_DIR, os.path.basename(sampleInfo.indexUrl))
downloadParams.append(
{
"url": sampleInfo.indexUrl,
"saveTo": indexPath,
"position": 1,
}
)
print("[Voice Changer] Downloading model files...", end="")
with ThreadPoolExecutor() as pool:
pool.map(download_no_tqdm, downloadParams)
print("")
2023-05-24 14:49:24 +03:00
return modelPath, indexPath