Update rvc.py
Browse files
rvc.py
CHANGED
@@ -1,3 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
from original import *
|
2 |
|
3 |
import shutil, glob, subprocess
|
@@ -10,7 +27,9 @@ os.makedirs("audios",exist_ok=True)
|
|
10 |
|
11 |
model_library = CachedModels()
|
12 |
|
13 |
-
|
|
|
|
|
14 |
|
15 |
with gr.Blocks(title="🔊 Nex RVC Mobile",theme=gr.themes.Base()) as app:
|
16 |
|
|
|
1 |
+
import os
|
2 |
+
|
3 |
+
import re
|
4 |
+
|
5 |
+
import random
|
6 |
+
|
7 |
+
from scipy.io.wavfile import write
|
8 |
+
from scipy.io.wavfile import read
|
9 |
+
|
10 |
+
import numpy as np
|
11 |
+
|
12 |
+
import gradio as gr
|
13 |
+
|
14 |
+
import yt_dlp
|
15 |
+
|
16 |
+
import subprocess
|
17 |
+
|
18 |
from original import *
|
19 |
|
20 |
import shutil, glob, subprocess
|
|
|
27 |
|
28 |
model_library = CachedModels()
|
29 |
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
|
34 |
with gr.Blocks(title="🔊 Nex RVC Mobile",theme=gr.themes.Base()) as app:
|
35 |
|