File size: 13,326 Bytes
d88d287
0133704
d88d287
52be161
ab844ce
 
 
4a204a9
8dc4072
863b7f0
0133704
8dc4072
ab844ce
863b7f0
4a204a9
8dc4072
 
 
863b7f0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ab844ce
863b7f0
ab844ce
1376571
a3c3a0c
6422fc1
863b7f0
 
 
4754fab
 
863b7f0
ab844ce
 
863b7f0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8dc4072
d88d287
 
ab844ce
4a204a9
863b7f0
4a204a9
8dc4072
d88d287
863b7f0
d88d287
 
bcd292a
d88d287
 
 
 
 
 
 
 
 
 
863b7f0
ab844ce
77b4ca5
863b7f0
8dc4072
d88d287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4a204a9
d88d287
 
 
 
 
 
77b4ca5
d88d287
77b4ca5
863b7f0
ab844ce
 
 
 
d88d287
863b7f0
ab844ce
4a204a9
 
d88d287
863b7f0
 
52be161
863b7f0
 
 
 
 
 
 
 
 
ab844ce
863b7f0
 
 
 
 
 
77b4ca5
863b7f0
 
 
4a204a9
863b7f0
 
 
77b4ca5
 
863b7f0
 
 
4a204a9
863b7f0
 
77b4ca5
863b7f0
 
 
 
 
 
77b4ca5
863b7f0
 
 
 
 
8dc4072
863b7f0
 
 
 
 
8dc4072
863b7f0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d88d287
 
 
863b7f0
ab844ce
863b7f0
 
 
d88d287
863b7f0
ab844ce
863b7f0
 
d88d287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8dc4072
d88d287
863b7f0
 
 
 
8dc4072
d88d287
863b7f0
 
 
77b4ca5
863b7f0
 
77b4ca5
863b7f0
 
77b4ca5
863b7f0
 
8dc4072
863b7f0
8dc4072
863b7f0
 
 
4a204a9
863b7f0
 
 
d88d287
 
 
 
 
77b4ca5
863b7f0
d88d287
 
 
 
 
ab844ce
 
 
d88d287
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
import spaces
import os
os.environ['SPACES_ZERO_GPU'] = '1'

import gradio as gr
import soundfile as sf
import tempfile
import torch
from vieneu_tts import VieNeuTTS
import time

print("⏳ Đang khởi động VieNeu-TTS...")

# --- 1. SETUP MODEL ---
print("📦 Đang tải model...")
device = "cuda" if torch.cuda.is_available() else "cpu"
print(f"🖥️ Sử dụng thiết bị: {device.upper()}")

try:
    tts = VieNeuTTS(
        backbone_repo="pnnbao-ump/VieNeu-TTS",
        backbone_device=device,
        codec_repo="neuphonic/neucodec",
        codec_device=device
    )
    print("✅ Model đã tải xong!")
except Exception as e:
    print(f"⚠️ Không thể tải model (Chế độ UI Demo): {e}")
    class MockTTS:
        def encode_reference(self, path): return None
        def infer(self, text, ref, ref_text): 
            import numpy as np
            time.sleep(1.5) 
            return np.random.uniform(-0.5, 0.5, 24000*3)
    tts = MockTTS()

# --- 2. DATA ---
VOICE_SAMPLES = {
    "Tuyên (nam miền Bắc)": {"audio": "./sample/Tuyên (nam miền Bắc).wav", "text": "./sample/Tuyên (nam miền Bắc).txt"},
    "Vĩnh (nam miền Nam)": {"audio": "./sample/Vĩnh (nam miền Nam).wav", "text": "./sample/Vĩnh (nam miền Nam).txt"},
    "Bình (nam miền Bắc)": {"audio": "./sample/Bình (nam miền Bắc).wav", "text": "./sample/Bình (nam miền Bắc).txt"},
    "Nguyên (nam miền Nam)": {"audio": "./sample/Nguyên (nam miền Nam).wav", "text": "./sample/Nguyên (nam miền Nam).txt"},
    "Sơn (nam miền Nam)": {"audio": "./sample/Sơn (nam miền Nam).wav", "text": "./sample/Sơn (nam miền Nam).txt"},
    "Đoan (nữ miền Nam)": {"audio": "./sample/Đoan (nữ miền Nam).wav", "text": "./sample/Đoan (nữ miền Nam).txt"},
    "Ngọc (nữ miền Bắc)": {"audio": "./sample/Ngọc (nữ miền Bắc).wav", "text": "./sample/Ngọc (nữ miền Bắc).txt"},
    "Ly (nữ miền Bắc)": {"audio": "./sample/Ly (nữ miền Bắc).wav", "text": "./sample/Ly (nữ miền Bắc).txt"},
    "Dung (nữ miền Nam)": {"audio": "./sample/Dung (nữ miền Nam).wav", "text": "./sample/Dung (nữ miền Nam).txt"}
}

# --- 3. HELPER FUNCTIONS ---
def load_reference_info(voice_choice):
    if voice_choice in VOICE_SAMPLES:
        audio_path = VOICE_SAMPLES[voice_choice]["audio"]
        text_path = VOICE_SAMPLES[voice_choice]["text"]
        try:
            if os.path.exists(text_path):
                with open(text_path, "r", encoding="utf-8") as f:
                    ref_text = f.read()
                return audio_path, ref_text
            else:
                return audio_path, "⚠️ Không tìm thấy file text mẫu."
        except Exception as e:
            return None, f"❌ Lỗi: {str(e)}"
    return None, ""

@spaces.GPU(duration=120) 
def synthesize_preset(text, voice_choice):
    """Tổng hợp giọng từ preset"""
    try:
        if not text or text.strip() == "":
            return None, "⚠️ Vui lòng nhập văn bản cần tổng hợp!"
        
        if len(text) > 250:
            return None, f"❌ Văn bản quá dài ({len(text)}/250 ký tự)!"

        if voice_choice not in VOICE_SAMPLES:
            return None, "⚠️ Vui lòng chọn một giọng mẫu."
        
        ref_audio_path = VOICE_SAMPLES[voice_choice]["audio"]
        ref_text_path = VOICE_SAMPLES[voice_choice]["text"]
        
        if not os.path.exists(ref_audio_path):
            return None, f"❌ Không tìm thấy file audio: {ref_audio_path}"
             
        with open(ref_text_path, "r", encoding="utf-8") as f:
            ref_text_raw = f.read()
        
        print(f"🎤 Preset Voice: {voice_choice}")
        print(f"📝 Text: {text[:50]}...")
        
        start_time = time.time()
        ref_codes = tts.encode_reference(ref_audio_path)
        wav = tts.infer(text, ref_codes, ref_text_raw)
        end_time = time.time()
        
        process_time = end_time - start_time
        
        with tempfile.NamedTemporaryFile(delete=False, suffix=".wav") as tmp_file:
            sf.write(tmp_file.name, wav, 24000)
            output_path = tmp_file.name
        
        return output_path, f"✅ Thành công! (Mất {process_time:.2f} giây)"

    except Exception as e:
        import traceback
        traceback.print_exc()
        return None, f"❌ Lỗi: {str(e)}"

@spaces.GPU(duration=120)
def synthesize_custom(text, custom_audio, custom_text):
    """Tổng hợp giọng custom"""
    try:
        if not text or text.strip() == "":
            return None, "⚠️ Vui lòng nhập văn bản cần tổng hợp!"
        
        if len(text) > 250:
            return None, f"❌ Văn bản quá dài ({len(text)}/250 ký tự)!"
        
        if custom_audio is None or not custom_text:
            return None, "⚠️ Vui lòng tải lên Audio và nhập nội dung Audio đó."
        
        print("🎨 Custom Voice")
        print(f"📝 Text: {text[:50]}...")
        
        start_time = time.time()
        ref_codes = tts.encode_reference(custom_audio)
        wav = tts.infer(text, ref_codes, custom_text)
        end_time = time.time()
        
        process_time = end_time - start_time
        
        with tempfile.NamedTemporaryFile(delete=False, suffix=".wav") as tmp_file:
            sf.write(tmp_file.name, wav, 24000)
            output_path = tmp_file.name
        
        return output_path, f"✅ Thành công! (Mất {process_time:.2f} giây)"

    except Exception as e:
        import traceback
        traceback.print_exc()
        return None, f"❌ Lỗi: {str(e)}"

# --- 4. UI SETUP ---
theme = gr.themes.Soft(
    primary_hue="indigo",
    secondary_hue="cyan",
    neutral_hue="slate",
    font=[gr.themes.GoogleFont('Inter'), 'ui-sans-serif', 'system-ui'],
).set(
    button_primary_background_fill="linear-gradient(90deg, #6366f1 0%, #0ea5e9 100%)",
    button_primary_background_fill_hover="linear-gradient(90deg, #4f46e5 0%, #0284c7 100%)",
    block_shadow="0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",
)

css = """
.container { max-width: 1200px; margin: auto; }
.header-box { 
    text-align: center; 
    margin-bottom: 25px; 
    padding: 25px; 
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 12px; 
    border: 1px solid #334155; 
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}
.header-title { 
    font-size: 2.5rem; 
    font-weight: 800; 
    color: white;
    background: -webkit-linear-gradient(45deg, #60A5FA, #22D3EE);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    margin-bottom: 10px; 
}
.header-desc {
    font-size: 1.1rem; 
    color: #cbd5e1;
    margin-bottom: 15px;
}
.link-group a { 
    text-decoration: none; 
    margin: 0 10px; 
    font-weight: 600; 
    color: #94a3b8;
    transition: color 0.2s; 
}
.link-group a:hover { color: #38bdf8; text-shadow: 0 0 5px rgba(56, 189, 248, 0.5); }
.status-box { font-weight: bold; text-align: center; border: none; background: transparent; }
"""

EXAMPLES_LIST = [
    ["Về miền Tây không chỉ để ngắm nhìn sông nước hữu tình, mà còn để cảm nhận tấm chân tình của người dân nơi đây. Cùng ngồi xuồng ba lá len lỏi qua rặng dừa nước, nghe câu vọng cổ ngọt ngào thì còn gì bằng.", "Vĩnh (nam miền Nam)"],
    ["Hà Nội những ngày vào thu mang một vẻ đẹp trầm mặc và cổ kính đến lạ thường. Đi dạo quanh Hồ Gươm vào sáng sớm, hít hà mùi hoa sữa nồng nàn và thưởng thức chút cốm làng Vòng là trải nghiệm khó quên.", "Bình (nam miền Bắc)"],
    ["Sự bùng nổ của trí tuệ nhân tạo đang định hình lại cách chúng ta làm việc và sinh sống. Từ xe tự lái đến trợ lý ảo thông minh, công nghệ đang dần xóa nhòa ranh giới giữa thực tại và những bộ phim viễn tưởng.", "Tuyên (nam miền Bắc)"],
]

with gr.Blocks(theme=theme, css=css, title="VieNeu-TTS Studio") as demo:
    
    with gr.Column(elem_classes="container"):
        gr.HTML("""
            <div class="header-box">
                <div class="header-title">🎙️ VieNeu-TTS Studio</div>
                <div class="header-desc">
                    Phiên bản: VieNeu-TTS-1000h (model mới nhất, train trên 1000 giờ dữ liệu)
                </div>
                <div class="link-group">
                    <a href="https://huggingface.co/pnnbao-ump/VieNeu-TTS" target="_blank">🤗 Model Card</a> • 
                    <a href="https://huggingface.co/datasets/pnnbao-ump/VieNeu-TTS-1000h" target="_blank">📖 Dataset 1000h</a> • 
                    <a href="https://github.com/pnnbao97/VieNeu-TTS" target="_blank">🦜 GitHub</a>
                </div>
            </div>
        """)
    
    # Shared text input
    with gr.Row(elem_classes="container"):
        with gr.Column():
            gr.Markdown("### 📝 Văn bản đầu vào")
            text_input = gr.Textbox(
                label="Nhập văn bản",
                placeholder="Nhập nội dung tiếng Việt cần chuyển thành giọng nói...",
                lines=4,
                value="Sự bùng nổ của trí tuệ nhân tạo đang định hình lại cách chúng ta làm việc và sinh sống.",
                show_label=False
            )
            with gr.Row():
                char_count = gr.HTML("<div style='text-align: right; color: #64748B; font-size: 0.8rem;'>0 / 250 ký tự</div>")
    
    with gr.Tabs() as tabs:
        # TAB 1: Preset Voices
        with gr.Tab("👤 Giọng có sẵn"):
            with gr.Row(elem_classes="container"):
                with gr.Column(scale=3):
                    voice_select = gr.Dropdown(
                        choices=list(VOICE_SAMPLES.keys()),
                        value="Tuyên (nam miền Bắc)",
                        label="Chọn giọng",
                        interactive=True
                    )
                    with gr.Accordion("Thông tin giọng mẫu", open=False):
                        ref_audio_preview = gr.Audio(label="Audio mẫu", interactive=False)
                        ref_text_preview = gr.Markdown("...")
                    
                    btn_preset = gr.Button("🎵 Tổng hợp giọng nói", variant="primary", size="lg")
                
                with gr.Column(scale=2):
                    gr.Markdown("### 🎧 Kết quả")
                    audio_preset = gr.Audio(label="Audio đầu ra", type="filepath")
                    status_preset = gr.Textbox(label="Trạng thái", show_label=False, elem_classes="status-box", placeholder="Sẵn sàng...")
        
        # TAB 2: Custom Voice
        with gr.Tab("🎙️ Giọng tùy chỉnh"):
            with gr.Row(elem_classes="container"):
                with gr.Column(scale=3):
                    gr.Markdown("Tải lên giọng của bạn (Zero-shot Cloning)")
                    custom_audio = gr.File(label="File ghi âm (.wav)", file_types=[".wav"])
                    custom_text = gr.Textbox(label="Nội dung ghi âm", placeholder="Nhập chính xác lời thoại...", lines=3)
                    btn_custom = gr.Button("🎵 Tổng hợp giọng nói", variant="primary", size="lg")
                
                with gr.Column(scale=2):
                    gr.Markdown("### 🎧 Kết quả")
                    audio_custom = gr.Audio(label="Audio đầu ra", type="filepath")
                    status_custom = gr.Textbox(label="Trạng thái", show_label=False, elem_classes="status-box", placeholder="Sẵn sàng...")

    # Examples
    with gr.Row(elem_classes="container"):
        with gr.Column():
            gr.Markdown("### 📚 Ví dụ mẫu")
            gr.Examples(examples=EXAMPLES_LIST, inputs=[text_input, voice_select], label="Thử nghiệm nhanh")

    # --- EVENT HANDLERS ---
    def update_count(text):
        l = len(text)
        if l > 250:
            color = "#dc2626"
            msg = f"⚠️ <b>{l} / 250</b> - Quá giới hạn!"
        elif l > 200:
            color = "#ea580c"
            msg = f"{l} / 250"
        else:
            color = "#64748B"
            msg = f"{l} / 250 ký tự"
        return f"<div style='text-align: right; color: {color}; font-size: 0.8rem; font-weight: bold'>{msg}</div>"

    text_input.change(update_count, text_input, char_count)

    def update_ref_preview(voice):
        audio, text = load_reference_info(voice)
        return audio, f"> *\"{text}\"*"
    
    voice_select.change(update_ref_preview, voice_select, [ref_audio_preview, ref_text_preview])
    demo.load(update_ref_preview, voice_select, [ref_audio_preview, ref_text_preview])

    btn_preset.click(
        fn=synthesize_preset,
        inputs=[text_input, voice_select],
        outputs=[audio_preset, status_preset],
        api_name="preset"
    )

    btn_custom.click(
        fn=synthesize_custom,
        inputs=[text_input, custom_audio, custom_text],
        outputs=[audio_custom, status_custom],
        api_name="custom"
    )

if __name__ == "__main__":
    demo.queue().launch()