Update README.md
Browse files
README.md
CHANGED
@@ -12,81 +12,145 @@ tags:
|
|
12 |
- voice-conversion
|
13 |
- Voice2Voice
|
14 |
---
|
15 |
-
<!DOCTYPE html>
|
16 |
<html lang="en">
|
17 |
<head>
|
18 |
<meta charset="UTF-8">
|
19 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
20 |
<style>
|
21 |
-
body {
|
22 |
-
|
23 |
-
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
}
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
padding: 2rem;
|
30 |
-
border-radius: 5px;
|
31 |
-
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
32 |
-
text-align: center;
|
33 |
}
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
}
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
ul {
|
43 |
-
list-style: none;
|
44 |
-
padding: 0;
|
45 |
-
margin: 0;
|
46 |
-
}
|
47 |
-
ul li {
|
48 |
-
margin-bottom: 0.5rem;
|
49 |
-
}
|
50 |
-
p {
|
51 |
-
margin-bottom: 1.5rem;
|
52 |
-
font-size: 1.1rem;
|
53 |
-
}
|
54 |
-
a {
|
55 |
-
color: #007bff;
|
56 |
-
text-decoration: none;
|
57 |
-
}
|
58 |
-
a:hover {
|
59 |
-
text-decoration: underline;
|
60 |
}
|
61 |
</style>
|
62 |
</head>
|
63 |
<body>
|
64 |
<div class="container">
|
65 |
-
<hr
|
66 |
-
<h1>Voice Conversion
|
67 |
-
<p>
|
68 |
-
<hr
|
69 |
-
<
|
70 |
-
<
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
<
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
<
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
<
|
88 |
-
|
89 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
</div>
|
91 |
</body>
|
92 |
</html>
|
|
|
12 |
- voice-conversion
|
13 |
- Voice2Voice
|
14 |
---
|
|
|
15 |
<html lang="en">
|
16 |
<head>
|
17 |
<meta charset="UTF-8">
|
18 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
19 |
<style>
|
20 |
+
body { font-family: 'Arial', sans-serif; padding: 2rem; color: #333; background: linear-gradient(135deg, #f5f7fa, #c3cfe2); }
|
21 |
+
.container { max-width: 800px; margin: 0 auto; padding: 2rem; border-radius: 10px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); text-align: center; animation: fadeIn 1s ease-in-out; }
|
22 |
+
h1 { margin-bottom: 1.5rem; font-size: 2.5rem; color: transparent; background: linear-gradient(135deg, #800080, #6a006a); -webkit-background-clip: text; background-clip: text; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); animation: textFadeIn 1s ease-in-out; }
|
23 |
+
h2 { margin-bottom: 1rem; font-size: 2rem; color: transparent; background: linear-gradient(135deg, #800080, #6a006a); -webkit-background-clip: text; background-clip: text; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); animation: textFadeIn 1s ease-in-out; }
|
24 |
+
table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; table-layout: fixed; border-radius: 5px; overflow: hidden; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); animation: slideIn 1s ease-in-out; }
|
25 |
+
th, td { padding: 1rem; border: 1px solid #ddd; font-size: 1.2rem; text-align: center; vertical-align: middle; transition: background 0.3s ease, transform 0.3s ease; background-color: #fff; }
|
26 |
+
th { background-color: #800080; color: #fff; }
|
27 |
+
a { color: #007bff; text-decoration: none; transition: color 0.3s ease, transform 0.3s ease; }
|
28 |
+
a:hover { color: #0056b3; transform: scale(1.05); }
|
29 |
+
.model-col { width: 50%; }
|
30 |
+
.author-col { width: 50%; }
|
31 |
+
.donate-button { display: inline-block; padding: 15px 30px; background: linear-gradient(135deg, #800080, #6a006a); color: #fff; text-decoration: none; border-radius: 5px; margin-top: 20px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; }
|
32 |
+
.donate-button:hover { background: linear-gradient(135deg, #6a006a, #500050); box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); transform: translateY(-2px) scale(1.05); }
|
33 |
+
.small-text { font-size: 0.8rem; }
|
34 |
+
hr { border: none; height: 2px; background: linear-gradient(90deg, transparent, #800080, transparent); margin: 2rem 0; animation: pulse 2s infinite; }
|
35 |
+
.table-row td:hover { background-color: #f5f7fa; transform: scale(1.05); }
|
36 |
+
.icon { margin-right: 5px; transition: transform 0.3s ease; }
|
37 |
+
.icon:hover { transform: scale(1.2); }
|
38 |
+
.tooltip { position: relative; display: inline-block; }
|
39 |
+
.tooltip .tooltiptext { visibility: hidden; width: 120px; background-color: #555; color: #fff; text-align: center; border-radius: 5px; padding: 5px; position: absolute; z-index: 1; bottom: 125%; left: 50%; margin-left: -60px; opacity: 0; transition: opacity 0.3s; }
|
40 |
+
.tooltip:hover .tooltiptext { visibility: visible; opacity: 1; }
|
41 |
+
@keyframes fadeIn {
|
42 |
+
0% { opacity: 0; transform: translateY(-20px); }
|
43 |
+
100% { opacity: 1; transform: translateY(0); }
|
44 |
}
|
45 |
+
@keyframes textFadeIn {
|
46 |
+
0% { opacity: 0; transform: translateY(10px); }
|
47 |
+
100% { opacity: 1; transform: translateY(0); }
|
|
|
|
|
|
|
|
|
48 |
}
|
49 |
+
@keyframes slideIn {
|
50 |
+
0% { opacity: 0; transform: translateY(20px); }
|
51 |
+
100% { opacity: 1; transform: translateY(0); }
|
52 |
}
|
53 |
+
@keyframes pulse {
|
54 |
+
0% { opacity: 0.5; }
|
55 |
+
50% { opacity: 1; }
|
56 |
+
100% { opacity: 0.5; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
}
|
58 |
</style>
|
59 |
</head>
|
60 |
<body>
|
61 |
<div class="container">
|
62 |
+
<hr>
|
63 |
+
<h1>Voice Conversion RVC Hub</h1>
|
64 |
+
<p>A repository of pretrained models, HuBERT models, and other files for RVC neural network.</p>
|
65 |
+
<hr>
|
66 |
+
<h2>HuBERT Models</h2>
|
67 |
+
<table>
|
68 |
+
<tr>
|
69 |
+
<th class="model-col">Model<br><span class="small-text">(Repository)</span></th>
|
70 |
+
<th class="author-col">Author</th>
|
71 |
+
</tr>
|
72 |
+
<tr class="table-row">
|
73 |
+
<td class="model-col"><a href="https://github.com/auspicious3000/contentvec" target="_blank"><span class="icon">π</span>contentvec_base</a></td>
|
74 |
+
<td class="author-col"><a href="https://github.com/auspicious3000" target="_blank"><span class="icon">π€</span>auspicious3000</a></td>
|
75 |
+
</tr>
|
76 |
+
<tr class="table-row">
|
77 |
+
<td class="model-col"><a href="https://huggingface.co/rinna/japanese-hubert-base" target="_blank"><span class="icon">π</span>japanese_hubert_base</a></td>
|
78 |
+
<td class="author-col"><a href="https://huggingface.co/rinna" target="_blank"><span class="icon">π€</span>rinna</a></td>
|
79 |
+
</tr>
|
80 |
+
<tr class="table-row">
|
81 |
+
<td class="model-col"><a href="https://huggingface.co/TencentGameMate/chinese-hubert-base" target="_blank"><span class="icon">π</span>chinese_hubert_base</a></td>
|
82 |
+
<td class="author-col"><a href="https://huggingface.co/TencentGameMate" target="_blank"><span class="icon">π€</span>TencentGameMate</a></td>
|
83 |
+
</tr>
|
84 |
+
<tr class="table-row">
|
85 |
+
<td class="model-col"><a href="https://huggingface.co/team-lucid/hubert-base-korean" target="_blank"><span class="icon">π</span>korean_hubert_base</a></td>
|
86 |
+
<td class="author-col"><a href="https://huggingface.co/team-lucid" target="_blank"><span class="icon">π€</span>team-lucid</a></td>
|
87 |
+
</tr>
|
88 |
+
<tr class="table-row">
|
89 |
+
<td class="model-col"><a href="https://huggingface.co/shiromiya/fairseq-hubert-portuguese" target="_blank"><span class="icon">π</span>portuguese_hubert_base</a></td>
|
90 |
+
<td class="author-col"><a href="https://huggingface.co/shiromiya" target="_blank"><span class="icon">π€</span>shiromiya</a></td>
|
91 |
+
</tr>
|
92 |
+
</table>
|
93 |
+
<h2>Pre-Trained Models</h2>
|
94 |
+
<table>
|
95 |
+
<tr>
|
96 |
+
<th class="model-col">Model<br><span class="small-text">(Repository)</span></th>
|
97 |
+
<th class="author-col">Author</th>
|
98 |
+
</tr>
|
99 |
+
<tr class="table-row">
|
100 |
+
<td class="model-col"><a href="https://huggingface.co/MUSTAR" target="_blank"><span class="icon">π</span>Rigel</a></td>
|
101 |
+
<td class="author-col" rowspan="3"><a href="https://huggingface.co/MUSTAR" target="_blank"><span class="icon">π€</span>MUSTAR</a></td>
|
102 |
+
</tr>
|
103 |
+
<tr class="table-row">
|
104 |
+
<td class="model-col"><a href="https://huggingface.co/MUSTAR" target="_blank"><span class="icon">π</span>Snowie</a></td>
|
105 |
+
</tr>
|
106 |
+
<tr class="table-row">
|
107 |
+
<td class="model-col"><a href="https://huggingface.co/MUSTAR" target="_blank"><span class="icon">π</span>RIN_E3</a></td>
|
108 |
+
</tr>
|
109 |
+
<tr class="table-row">
|
110 |
+
<td class="model-col"><a href="https://huggingface.co/ORVC" target="_blank"><span class="icon">π</span>Ov2Super</a></td>
|
111 |
+
<td class="author-col"><a href="https://huggingface.co/ORVC" target="_blank"><span class="icon">π€</span>ORVC</a></td>
|
112 |
+
</tr>
|
113 |
+
<tr class="table-row">
|
114 |
+
<td class="model-col"><a href="https://huggingface.co/blaise-tk" target="_blank"><span class="icon">π</span>TITAN</a></td>
|
115 |
+
<td class="author-col"><a href="https://huggingface.co/blaise-tk" target="_blank"><span class="icon">π€</span>blaise-tk</a></td>
|
116 |
+
</tr>
|
117 |
+
<tr class="table-row">
|
118 |
+
<td class="model-col"><a href="https://huggingface.co/TheStinger/itaila" target="_blank"><span class="icon">π</span>itaila</a></td>
|
119 |
+
<td class="author-col"><a href="https://huggingface.co/TheStinger" target="_blank"><span class="icon">π€</span>TheStinger</a></td>
|
120 |
+
</tr>
|
121 |
+
<tr class="table-row">
|
122 |
+
<td class="model-col"><a href="https://huggingface.co/SeoulStreamingStation" target="_blank"><span class="icon">π</span>KLM</a></td>
|
123 |
+
<td class="author-col"><a href="https://huggingface.co/SeoulStreamingStation" target="_blank"><span class="icon">π€</span>SeoulStreamingStation</a></td>
|
124 |
+
</tr>
|
125 |
+
<tr class="table-row">
|
126 |
+
<td class="model-col"><a href="https://huggingface.co/Sztef" target="_blank"><span class="icon">π</span>SingerPretrain</a></td>
|
127 |
+
<td class="author-col" rowspan="2"><a href="https://huggingface.co/Sztef" target="_blank"><span class="icon">π€</span>Sztef</a></td>
|
128 |
+
</tr>
|
129 |
+
<tr class="table-row">
|
130 |
+
<td class="model-col"><a href="https://huggingface.co/Sztef" target="_blank"><span class="icon">π</span>Anime</a></td>
|
131 |
+
</tr>
|
132 |
+
<tr class="table-row">
|
133 |
+
<td class="model-col"><a href="https://huggingface.co/Razer112" target="_blank"><span class="icon">π</span>DMR</a></td>
|
134 |
+
<td class="author-col"><a href="https://huggingface.co/Razer112" target="_blank"><span class="icon">π€</span>Razer112</a></td>
|
135 |
+
</tr>
|
136 |
+
<tr class="table-row">
|
137 |
+
<td class="model-col"><a href="https://huggingface.co/Plasmati" target="_blank"><span class="icon">π</span>UKR</a></td>
|
138 |
+
<td class="author-col" rowspan="2"><a href="https://huggingface.co/Plasmati" target="_blank"><span class="icon">π€</span>Plasmati</a></td>
|
139 |
+
</tr>
|
140 |
+
<tr class="table-row">
|
141 |
+
<td class="model-col"><a href="https://huggingface.co/Plasmati" target="_blank"><span class="icon">π</span>UKA</a></td>
|
142 |
+
</tr>
|
143 |
+
<tr class="table-row">
|
144 |
+
<td class="model-col"><a href="https://huggingface.co/Loren85" target="_blank"><span class="icon">π</span>IMA_Robotic</a></td>
|
145 |
+
<td class="author-col"><a href="https://huggingface.co/Loren85" target="_blank"><span class="icon">π€</span>Loren85</a></td>
|
146 |
+
</tr>
|
147 |
+
<tr class="table-row">
|
148 |
+
<td class="model-col"><a href="https://huggingface.co/shiromiya" target="_blank"><span class="icon">π</span>Nanashi</a></td>
|
149 |
+
<td class="author-col"><a href="https://huggingface.co/shiromiya" target="_blank"><span class="icon">π€</span>shiromiya</a></td>
|
150 |
+
</tr>
|
151 |
+
</table>
|
152 |
+
<hr>
|
153 |
+
<a href="https://www.donationalerts.com/r/politrees" target="_blank" class="donate-button">Send Donation</a>
|
154 |
</div>
|
155 |
</body>
|
156 |
</html>
|