change default f0det to onnx_rmvpe

This commit is contained in:
w-okada 2023-09-22 00:50:09 +09:00
parent 654de69533
commit 7febd37198
4 changed files with 1265 additions and 5 deletions

View File

@ -1 +1,10 @@
<!doctype html><html style="width:100%;height:100%;overflow:hidden"><head><meta charset="utf-8"/><title>Voice Changer Client Demo</title><script defer="defer" src="index.js"></script></head><body style="width:100%;height:100%;margin:0"><div id="app" style="width:100%;height:100%"></div></body></html>
<!DOCTYPE html>
<html style="width: 100%; height: 100%; overflow: hidden">
<head>
<meta charset="utf-8" />
<title>Voice Changer Client Demo</title>
<script defer src="index.js"></script></head>
<body style="width: 100%; height: 100%; margin: 0px">
<div id="app" style="width: 100%; height: 100%"></div>
</body>
</html>

File diff suppressed because one or more lines are too long

View File

@ -390,7 +390,7 @@ export const DefaultServerSetting: ServerInfo = {
f0Factor: 1.0,
f0Detector: F0Detector.dio,
f0Detector: F0Detector.rmvpe_onnx,
tran: 0,
noiseScale: 0,

View File

@ -6,7 +6,7 @@ class RVCSettings:
gpu: int = -9999
dstId: int = 0
f0Detector: str = "harvest" # dio or harvest
f0Detector: str = "rmvpe_onnx" # dio or harvest
tran: int = 12
silentThreshold: float = 0.00001
extraConvertSize: int = 1024 * 4