Spaces:
Running
Running
Upload 4 files
Browse files- DEPLOY_TO_HF.md +55 -0
- README.md +155 -0
- app.py +1383 -0
- requirements.txt +7 -0
DEPLOY_TO_HF.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 🚀 Hugging Face Deployment Instructions
|
| 2 |
+
|
| 3 |
+
## ✅ Ready for Deployment
|
| 4 |
+
|
| 5 |
+
This application is now fully ready for Hugging Face Spaces deployment!
|
| 6 |
+
|
| 7 |
+
### 📁 Files to Upload to Hugging Face Space:
|
| 8 |
+
- `app.py` - Main application file
|
| 9 |
+
- `requirements.txt` - Fixed dependencies (no kokoro)
|
| 10 |
+
- `README.md` - Contains HF configuration header
|
| 11 |
+
- `DEPLOYMENT.md` - Detailed deployment guide
|
| 12 |
+
- `CHANGELOG.md` - Version history
|
| 13 |
+
|
| 14 |
+
### ⚙️ Required Environment Variable:
|
| 15 |
+
Set in your Hugging Face Space settings:
|
| 16 |
+
```
|
| 17 |
+
GEMINI_API_KEY = your_actual_google_gemini_api_key
|
| 18 |
+
```
|
| 19 |
+
|
| 20 |
+
### 🔧 Fixed Issues:
|
| 21 |
+
- ✅ Removed kokoro dependency that was causing build errors
|
| 22 |
+
- ✅ Made kokoro import optional in code
|
| 23 |
+
- ✅ Updated requirements.txt with specific versions
|
| 24 |
+
- ✅ All tests passing (5/5)
|
| 25 |
+
- ✅ Voice Studio works with 26 voices across 13 languages
|
| 26 |
+
- ✅ Audio Translation uses Google TTS instead of kokoro
|
| 27 |
+
|
| 28 |
+
### 📊 Test Results:
|
| 29 |
+
```
|
| 30 |
+
============================================================
|
| 31 |
+
TEST SUMMARY
|
| 32 |
+
============================================================
|
| 33 |
+
[PASS] Import Test
|
| 34 |
+
[PASS] Environment Test
|
| 35 |
+
[PASS] App Loading Test
|
| 36 |
+
[PASS] Voice Mappings Test
|
| 37 |
+
[PASS] Temp Directory Test
|
| 38 |
+
|
| 39 |
+
Results: 5/5 tests passed
|
| 40 |
+
All tests passed! The app should work correctly.
|
| 41 |
+
```
|
| 42 |
+
|
| 43 |
+
### 🎯 What Works:
|
| 44 |
+
- **Voice Studio**: 26 neural voices, text-to-speech, MP3 download
|
| 45 |
+
- **Audio Translation**: Transcription, translation, voice synthesis
|
| 46 |
+
- **Mobile Optimized**: Responsive design for all devices
|
| 47 |
+
- **No Kokoro Dependency**: Simplified deployment, fewer conflicts
|
| 48 |
+
|
| 49 |
+
### 📝 Quick Deployment Steps:
|
| 50 |
+
1. Create new Hugging Face Space (Gradio SDK)
|
| 51 |
+
2. Upload all files from this directory
|
| 52 |
+
3. Set GEMINI_API_KEY in Space settings
|
| 53 |
+
4. App will auto-deploy and be available at your Space URL
|
| 54 |
+
|
| 55 |
+
The build error has been fixed and the app is deployment-ready! 🎉
|
README.md
ADDED
|
@@ -0,0 +1,155 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Voice Studio & Audio Translation
|
| 3 |
+
emoji: 🎤
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: purple
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: "4.0.0"
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# 🎤 Voice Studio & Audio Translation
|
| 13 |
+
|
| 14 |
+
A comprehensive AI-powered application that combines text-to-speech synthesis and audio translation capabilities in one unified interface.
|
| 15 |
+
|
| 16 |
+
## 🌟 Features
|
| 17 |
+
|
| 18 |
+
### 🎤 Voice Studio
|
| 19 |
+
- **26 High-Quality Voices**: Standard neural voices across 13 countries
|
| 20 |
+
- **Multi-Language Support**: Vietnamese, English (US/UK), German, French, Spanish, Italian, Japanese, Korean, Chinese, Russian, Portuguese, Arabic
|
| 21 |
+
- **Speed Control**: Adjustable speech rate from 0.5x to 2.0x
|
| 22 |
+
- **Instant Download**: Generate and download MP3 files
|
| 23 |
+
- **Pure Neural Voices**: Only official Edge TTS neural voices, no artificial variations
|
| 24 |
+
|
| 25 |
+
### 🎙️ Audio Translation
|
| 26 |
+
- **Audio Transcription**: Powered by Google Gemini 2.0 Flash
|
| 27 |
+
- **Language Detection**: Automatic source language identification
|
| 28 |
+
- **Cultural Translation**: Context-aware translation preserving cultural nuances
|
| 29 |
+
- **Voice Synthesis**: Integrated with Voice Studio's 26 voices
|
| 30 |
+
- **Multiple Formats**: Download as TXT or Word documents
|
| 31 |
+
- **Side-by-Side Comparison**: Compare original and translated content
|
| 32 |
+
|
| 33 |
+
## 🚀 Supported Languages
|
| 34 |
+
|
| 35 |
+
**Voice Studio (26 voices):**
|
| 36 |
+
- 🇻🇳 **Vietnamese**: HoaiMy (Female), NamMinh (Male)
|
| 37 |
+
- 🇺🇸 **American English**: Aria (Female), Guy (Male)
|
| 38 |
+
- 🇬🇧 **British English**: Sonia (Female), Ryan (Male)
|
| 39 |
+
- 🇩🇪 **German**: Katja (Female), Conrad (Male)
|
| 40 |
+
- 🇫🇷 **French**: Denise (Female), Henri (Male)
|
| 41 |
+
- 🇪🇸 **Spanish**: Elvira (Female), Alvaro (Male)
|
| 42 |
+
- 🇮🇹 **Italian**: Elsa (Female), Diego (Male)
|
| 43 |
+
- 🇯🇵 **Japanese**: Nanami (Female), Keita (Male)
|
| 44 |
+
- 🇰🇷 **Korean**: SunHi (Female), BongJin (Male)
|
| 45 |
+
- 🇨🇳 **Chinese**: Xiaoxiao (Female), Yunxi (Male)
|
| 46 |
+
- 🇷🇺 **Russian**: Svetlana (Female), Dmitry (Male)
|
| 47 |
+
- 🇵🇹 **Portuguese**: Francisca (Female), Antonio (Male)
|
| 48 |
+
- 🇸🇦 **Arabic**: Zariyah (Female), Hamed (Male)
|
| 49 |
+
|
| 50 |
+
**Audio Translation:**
|
| 51 |
+
- All Voice Studio languages plus additional Google TTS supported languages
|
| 52 |
+
|
| 53 |
+
## 🔧 Technology Stack
|
| 54 |
+
|
| 55 |
+
- **Frontend**: Gradio 4.0+ with responsive mobile design
|
| 56 |
+
- **TTS Engine**: Microsoft Edge TTS Neural Voices
|
| 57 |
+
- **AI Translation**: Google Gemini 2.0 Flash
|
| 58 |
+
- **Audio Processing**: Google Text-to-Speech, advanced audio libraries
|
| 59 |
+
- **File Handling**: SoundFile, Librosa, python-docx
|
| 60 |
+
|
| 61 |
+
## ⚙️ Setup
|
| 62 |
+
|
| 63 |
+
### Prerequisites
|
| 64 |
+
- Python 3.8+
|
| 65 |
+
- Google Gemini API Key
|
| 66 |
+
|
| 67 |
+
### Environment Variables
|
| 68 |
+
```bash
|
| 69 |
+
export GEMINI_API_KEY="your_gemini_api_key_here"
|
| 70 |
+
```
|
| 71 |
+
|
| 72 |
+
### Installation
|
| 73 |
+
```bash
|
| 74 |
+
pip install -r requirements.txt
|
| 75 |
+
```
|
| 76 |
+
|
| 77 |
+
### Run the Application
|
| 78 |
+
```bash
|
| 79 |
+
python app.py
|
| 80 |
+
```
|
| 81 |
+
|
| 82 |
+
The application will be available at `http://localhost:7860`
|
| 83 |
+
|
| 84 |
+
## 📱 Mobile Optimized
|
| 85 |
+
|
| 86 |
+
The interface is fully responsive and optimized for mobile devices with:
|
| 87 |
+
- Touch-friendly buttons
|
| 88 |
+
- Vertical stacking on small screens
|
| 89 |
+
- Optimized font sizes and spacing
|
| 90 |
+
- Mobile-first design approach
|
| 91 |
+
|
| 92 |
+
## 🔒 Privacy & Security
|
| 93 |
+
|
| 94 |
+
- **No Data Storage**: All processing is done in memory
|
| 95 |
+
- **Temporary Files**: Audio and text files are automatically cleaned up
|
| 96 |
+
- **Secure API**: Uses environment variables for API keys
|
| 97 |
+
- **Local Processing**: Text-to-speech runs locally using Edge TTS
|
| 98 |
+
|
| 99 |
+
## 🎯 Use Cases
|
| 100 |
+
|
| 101 |
+
- **Language Learning**: Practice pronunciation in multiple languages
|
| 102 |
+
- **Content Creation**: Generate multilingual audio content
|
| 103 |
+
- **Accessibility**: Convert text to speech for visually impaired users
|
| 104 |
+
- **Translation Services**: Translate audio content while preserving voice characteristics
|
| 105 |
+
- **Podcast Localization**: Create multilingual versions of audio content
|
| 106 |
+
|
| 107 |
+
## 🛠️ Advanced Features
|
| 108 |
+
|
| 109 |
+
- **Automatic Language Detection**: Intelligently detects source language
|
| 110 |
+
- **Cultural Context Preservation**: Maintains meaning across cultural boundaries
|
| 111 |
+
- **High-Quality Audio**: WAV format output for best quality
|
| 112 |
+
- **Batch Processing Ready**: Designed for scalability
|
| 113 |
+
- **Error Handling**: Comprehensive error management and user feedback
|
| 114 |
+
|
| 115 |
+
## 📦 Deployment
|
| 116 |
+
|
| 117 |
+
### Hugging Face Spaces
|
| 118 |
+
This application is ready for deployment on Hugging Face Spaces:
|
| 119 |
+
|
| 120 |
+
1. Upload all files to your Hugging Face Space
|
| 121 |
+
2. Set `GEMINI_API_KEY` in Space secrets
|
| 122 |
+
3. The app will automatically start on port 7860
|
| 123 |
+
|
| 124 |
+
### Docker Support
|
| 125 |
+
```dockerfile
|
| 126 |
+
FROM python:3.9-slim
|
| 127 |
+
|
| 128 |
+
WORKDIR /app
|
| 129 |
+
COPY requirements.txt .
|
| 130 |
+
RUN pip install -r requirements.txt
|
| 131 |
+
|
| 132 |
+
COPY app.py .
|
| 133 |
+
EXPOSE 7860
|
| 134 |
+
|
| 135 |
+
CMD ["python", "app.py"]
|
| 136 |
+
```
|
| 137 |
+
|
| 138 |
+
## 🤝 Contributing
|
| 139 |
+
|
| 140 |
+
Contributions are welcome! Please feel free to submit a Pull Request.
|
| 141 |
+
|
| 142 |
+
## 📄 License
|
| 143 |
+
|
| 144 |
+
This project is licensed under the MIT License.
|
| 145 |
+
|
| 146 |
+
## 🙏 Acknowledgments
|
| 147 |
+
|
| 148 |
+
- Microsoft Edge TTS for high-quality neural voices
|
| 149 |
+
- Google Gemini for advanced AI capabilities
|
| 150 |
+
- Librosa for advanced audio processing
|
| 151 |
+
- Gradio team for the excellent UI framework
|
| 152 |
+
|
| 153 |
+
---
|
| 154 |
+
|
| 155 |
+
**Developed by Digitized Brains** 🧠
|
app.py
ADDED
|
@@ -0,0 +1,1383 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
# -*- coding: utf-8 -*-
|
| 3 |
+
|
| 4 |
+
import os
|
| 5 |
+
import sys
|
| 6 |
+
|
| 7 |
+
# Set UTF-8 encoding for Windows
|
| 8 |
+
if sys.platform == 'win32':
|
| 9 |
+
import codecs
|
| 10 |
+
sys.stdout = codecs.getwriter('utf-8')(sys.stdout.detach())
|
| 11 |
+
sys.stderr = codecs.getwriter('utf-8')(sys.stderr.detach())
|
| 12 |
+
|
| 13 |
+
import numpy as np
|
| 14 |
+
import gradio as gr
|
| 15 |
+
import google.generativeai as genai
|
| 16 |
+
from gtts import gTTS, lang
|
| 17 |
+
import tempfile
|
| 18 |
+
import soundfile as sf
|
| 19 |
+
# Kokoro not used - removed for performance
|
| 20 |
+
import time
|
| 21 |
+
import base64
|
| 22 |
+
import edge_tts
|
| 23 |
+
import asyncio
|
| 24 |
+
import io
|
| 25 |
+
|
| 26 |
+
# Librosa not used - removed for performance
|
| 27 |
+
|
| 28 |
+
# Try to import python-docx for Word export
|
| 29 |
+
try:
|
| 30 |
+
from docx import Document
|
| 31 |
+
DOCX_AVAILABLE = True
|
| 32 |
+
except ImportError:
|
| 33 |
+
DOCX_AVAILABLE = False
|
| 34 |
+
|
| 35 |
+
# Configure Gemini API
|
| 36 |
+
GEMINI_API_KEY = os.getenv("GEMINI_API_KEY")
|
| 37 |
+
if GEMINI_API_KEY:
|
| 38 |
+
genai.configure(api_key=GEMINI_API_KEY)
|
| 39 |
+
|
| 40 |
+
# Language configurations for Audio Translation (simplified)
|
| 41 |
+
GTTS_LANGUAGES = lang.tts_langs()
|
| 42 |
+
GTTS_LANGUAGES['ja'] = 'Japanese'
|
| 43 |
+
|
| 44 |
+
SUPPORTED_LANGUAGES = sorted(list(GTTS_LANGUAGES.values()))
|
| 45 |
+
|
| 46 |
+
# Voice mapping for Edge TTS - defined once for performance
|
| 47 |
+
VOICE_MAP = {
|
| 48 |
+
"🇻🇳 HoaiMy - Nữ Việt Chuẩn": "vi-VN-HoaiMyNeural",
|
| 49 |
+
"🇻🇳 NamMinh - Nam Việt Chuẩn": "vi-VN-NamMinhNeural",
|
| 50 |
+
"🇺🇸 Aria - Nữ Mỹ": "en-US-AriaNeural",
|
| 51 |
+
"🇺🇸 Guy - Nam Mỹ": "en-US-GuyNeural",
|
| 52 |
+
"🇬🇧 Sonia - Nữ Anh": "en-GB-SoniaNeural",
|
| 53 |
+
"🇬🇧 Ryan - Nam Anh": "en-GB-RyanNeural",
|
| 54 |
+
"🇩🇪 Katja - Deutsche Frau": "de-DE-KatjaNeural",
|
| 55 |
+
"🇩🇪 Conrad - Deutscher Mann": "de-DE-ConradNeural",
|
| 56 |
+
"🇫🇷 Denise - Française": "fr-FR-DeniseNeural",
|
| 57 |
+
"🇫🇷 Henri - Français": "fr-FR-HenriNeural",
|
| 58 |
+
"🇪🇸 Elvira - Española": "es-ES-ElviraNeural",
|
| 59 |
+
"🇪🇸 Alvaro - Español": "es-ES-AlvaroNeural",
|
| 60 |
+
"🇮🇹 Elsa - Italiana": "it-IT-ElsaNeural",
|
| 61 |
+
"🇮🇹 Diego - Italiano": "it-IT-DiegoNeural",
|
| 62 |
+
"🇯🇵 Nanami - 日本女性": "ja-JP-NanamiNeural",
|
| 63 |
+
"🇯🇵 Keita - 日本男性": "ja-JP-KeitaNeural",
|
| 64 |
+
"🇰🇷 SunHi - 한국 여성": "ko-KR-SunHiNeural",
|
| 65 |
+
"🇰🇷 BongJin - 한국 남성": "ko-KR-BongJinNeural",
|
| 66 |
+
"🇨🇳 Xiaoxiao - 中文女声": "zh-CN-XiaoxiaoNeural",
|
| 67 |
+
"🇨🇳 Yunxi - 中文男声": "zh-CN-YunxiNeural",
|
| 68 |
+
"🇷🇺 Svetlana - Русская": "ru-RU-SvetlanaNeural",
|
| 69 |
+
"🇷🇺 Dmitry - Русский": "ru-RU-DmitryNeural",
|
| 70 |
+
"🇵🇹 Francisca - Portuguesa": "pt-BR-FranciscaNeural",
|
| 71 |
+
"🇵🇹 Antonio - Português": "pt-BR-AntonioNeural",
|
| 72 |
+
"🇸🇦 Zariyah - عربية": "ar-SA-ZariyahNeural",
|
| 73 |
+
"🇸🇦 Hamed - عربي": "ar-SA-HamedNeural"
|
| 74 |
+
}
|
| 75 |
+
|
| 76 |
+
def detect_language(text):
|
| 77 |
+
"""Detect language of input text"""
|
| 78 |
+
if not text.strip():
|
| 79 |
+
return "unknown"
|
| 80 |
+
|
| 81 |
+
text_lower = text.lower()
|
| 82 |
+
|
| 83 |
+
# Vietnamese detection
|
| 84 |
+
vietnamese_chars = 'àáạảãâầấậẩẫăằắặẳẵèéẹẻẽêềếệểễìíịỉĩòóọỏõôồốộổỗơờớợởỡùúụủũưừứựửữỳýỵỷỹđ'
|
| 85 |
+
if any(char in text for char in vietnamese_chars):
|
| 86 |
+
return "vietnamese"
|
| 87 |
+
|
| 88 |
+
# German detection
|
| 89 |
+
german_words = ['der', 'die', 'das', 'und', 'ist', 'ich', 'bin', 'haben', 'sein', 'werden']
|
| 90 |
+
german_chars = 'äöüß'
|
| 91 |
+
if any(word in text_lower for word in german_words) or any(char in text for char in german_chars):
|
| 92 |
+
return "german"
|
| 93 |
+
|
| 94 |
+
# English detection
|
| 95 |
+
english_words = ['the', 'and', 'is', 'are', 'have', 'has', 'will', 'would', 'can', 'could']
|
| 96 |
+
if any(word in text_lower for word in english_words):
|
| 97 |
+
return "english"
|
| 98 |
+
|
| 99 |
+
return "english"
|
| 100 |
+
|
| 101 |
+
async def generate_speech(text, voice_name, rate):
|
| 102 |
+
"""Generate speech using Edge TTS"""
|
| 103 |
+
communicate = edge_tts.Communicate(text, voice_name, rate=f"{rate:+.0%}")
|
| 104 |
+
|
| 105 |
+
# Create in-memory buffer
|
| 106 |
+
audio_buffer = io.BytesIO()
|
| 107 |
+
|
| 108 |
+
async for chunk in communicate.stream():
|
| 109 |
+
if chunk["type"] == "audio":
|
| 110 |
+
audio_buffer.write(chunk["data"])
|
| 111 |
+
|
| 112 |
+
audio_buffer.seek(0)
|
| 113 |
+
return audio_buffer.getvalue()
|
| 114 |
+
|
| 115 |
+
def create_text_file(content, file_format="txt", filename_prefix="translated_text"):
|
| 116 |
+
"""
|
| 117 |
+
Create a downloadable text file from content in TXT or DOCX format
|
| 118 |
+
"""
|
| 119 |
+
if not content or content.startswith("Lỗi:"):
|
| 120 |
+
return None
|
| 121 |
+
|
| 122 |
+
try:
|
| 123 |
+
if file_format.lower() == "docx" and DOCX_AVAILABLE:
|
| 124 |
+
# Create Word document
|
| 125 |
+
fd, temp_file_path = tempfile.mkstemp(suffix=".docx", prefix=f"{filename_prefix}_")
|
| 126 |
+
os.close(fd)
|
| 127 |
+
|
| 128 |
+
doc = Document()
|
| 129 |
+
doc.add_heading('Nội dung đã dịch', 0)
|
| 130 |
+
doc.add_paragraph(content)
|
| 131 |
+
doc.save(temp_file_path)
|
| 132 |
+
|
| 133 |
+
return temp_file_path
|
| 134 |
+
else:
|
| 135 |
+
# Create TXT file (default)
|
| 136 |
+
fd, temp_file_path = tempfile.mkstemp(suffix=".txt", prefix=f"{filename_prefix}_")
|
| 137 |
+
os.close(fd)
|
| 138 |
+
|
| 139 |
+
with open(temp_file_path, 'w', encoding='utf-8') as f:
|
| 140 |
+
f.write(content)
|
| 141 |
+
|
| 142 |
+
return temp_file_path
|
| 143 |
+
except Exception as e:
|
| 144 |
+
return None
|
| 145 |
+
|
| 146 |
+
def create_audio_voice_studio(text, voice_selection, speed):
|
| 147 |
+
"""Voice Studio functionality"""
|
| 148 |
+
if not text.strip():
|
| 149 |
+
return "❌ Vui lòng nhập văn bản / Please enter text / Bitte Text eingeben"
|
| 150 |
+
|
| 151 |
+
try:
|
| 152 |
+
# Use global VOICE_MAP for performance (avoiding recreation on each call)
|
| 153 |
+
voice_name = VOICE_MAP.get(voice_selection, "vi-VN-HoaiMyNeural")
|
| 154 |
+
text_limited = text[:1000] if len(text) > 1000 else text
|
| 155 |
+
|
| 156 |
+
# Convert speed (0.5-2.0) to rate percentage (-50% to +100%)
|
| 157 |
+
rate_percent = (speed - 1.0)
|
| 158 |
+
|
| 159 |
+
# Generate speech using Edge TTS
|
| 160 |
+
audio_data = asyncio.run(generate_speech(text_limited, voice_name, rate_percent))
|
| 161 |
+
|
| 162 |
+
# Convert to base64
|
| 163 |
+
audio_base64 = base64.b64encode(audio_data).decode('utf-8')
|
| 164 |
+
|
| 165 |
+
timestamp = int(time.time())
|
| 166 |
+
filename = f"voice_{voice_name}_{speed}x_{timestamp}.mp3"
|
| 167 |
+
|
| 168 |
+
# Detect language
|
| 169 |
+
detected_lang = detect_language(text_limited)
|
| 170 |
+
|
| 171 |
+
# Mobile-optimized HTML player
|
| 172 |
+
html_player = f'''
|
| 173 |
+
<div style="
|
| 174 |
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 175 |
+
border-radius: 20px;
|
| 176 |
+
padding: 20px;
|
| 177 |
+
margin: 10px 0;
|
| 178 |
+
box-shadow: 0 8px 32px rgba(0,0,0,0.2);
|
| 179 |
+
color: white;
|
| 180 |
+
text-align: center;
|
| 181 |
+
">
|
| 182 |
+
<div style="margin-bottom: 20px;">
|
| 183 |
+
<h3 style="color: #fff; margin: 0 0 15px 0; font-size: 1.3em; text-shadow: 1px 1px 2px rgba(0,0,0,0.3);">
|
| 184 |
+
🎵 Âm thanh hoàn thành!
|
| 185 |
+
</h3>
|
| 186 |
+
<div style="
|
| 187 |
+
background: rgba(255,255,255,0.2);
|
| 188 |
+
border-radius: 12px;
|
| 189 |
+
padding: 12px;
|
| 190 |
+
font-size: 0.9em;
|
| 191 |
+
line-height: 1.5;
|
| 192 |
+
backdrop-filter: blur(10px);
|
| 193 |
+
">
|
| 194 |
+
<div><strong>🎭 Giọng:</strong> {voice_selection}</div>
|
| 195 |
+
<div><strong>⚡ Tốc độ:</strong> {speed:.1f}x | <strong>🌍 Ngôn ngữ:</strong> {detected_lang.title()}</div>
|
| 196 |
+
<div><strong>📝 Độ dài:</strong> {len(text_limited)} ký tự</div>
|
| 197 |
+
</div>
|
| 198 |
+
</div>
|
| 199 |
+
|
| 200 |
+
<audio controls style="
|
| 201 |
+
width: 100%;
|
| 202 |
+
max-width: 100%;
|
| 203 |
+
height: 50px;
|
| 204 |
+
margin: 20px 0;
|
| 205 |
+
border-radius: 25px;
|
| 206 |
+
background: rgba(255,255,255,0.95);
|
| 207 |
+
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
|
| 208 |
+
">
|
| 209 |
+
<source src="data:audio/mpeg;base64,{audio_base64}" type="audio/mpeg">
|
| 210 |
+
Trình duyệt không hỗ trợ audio.
|
| 211 |
+
</audio>
|
| 212 |
+
|
| 213 |
+
<div style="
|
| 214 |
+
display: flex;
|
| 215 |
+
justify-content: center;
|
| 216 |
+
margin-top: 20px;
|
| 217 |
+
">
|
| 218 |
+
<a href="data:audio/mpeg;base64,{audio_base64}" download="{filename}"
|
| 219 |
+
style="
|
| 220 |
+
background: linear-gradient(45deg, #28a745, #20c997);
|
| 221 |
+
color: white;
|
| 222 |
+
padding: 15px 30px;
|
| 223 |
+
text-decoration: none;
|
| 224 |
+
border-radius: 25px;
|
| 225 |
+
font-weight: 700;
|
| 226 |
+
font-size: 1.1em;
|
| 227 |
+
display: flex;
|
| 228 |
+
align-items: center;
|
| 229 |
+
justify-content: center;
|
| 230 |
+
box-shadow: 0 4px 15px rgba(40,167,69,0.3);
|
| 231 |
+
transition: all 0.3s ease;
|
| 232 |
+
min-height: 48px;
|
| 233 |
+
min-width: 200px;
|
| 234 |
+
"
|
| 235 |
+
ontouchstart=""
|
| 236 |
+
onmouseover="this.style.transform='translateY(-2px)'; this.style.boxShadow='0 6px 20px rgba(40,167,69,0.4)'"
|
| 237 |
+
onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 4px 15px rgba(40,167,69,0.3)'">
|
| 238 |
+
📥 TẢI XUỐNG MP3
|
| 239 |
+
</a>
|
| 240 |
+
</div>
|
| 241 |
+
</div>
|
| 242 |
+
'''
|
| 243 |
+
|
| 244 |
+
return html_player
|
| 245 |
+
|
| 246 |
+
except Exception as e:
|
| 247 |
+
return f"❌ Error: {str(e)}"
|
| 248 |
+
|
| 249 |
+
# Language mapping for voices - defined once for performance
|
| 250 |
+
VOICE_TO_LANGUAGE = {
|
| 251 |
+
# Vietnamese
|
| 252 |
+
"🇻🇳 HoaiMy - Nữ Việt Chuẩn": "Vietnamese",
|
| 253 |
+
"🇻🇳 NamMinh - Nam Việt Chuẩn": "Vietnamese",
|
| 254 |
+
# English
|
| 255 |
+
"🇺🇸 Aria - Nữ Mỹ": "English",
|
| 256 |
+
"🇺🇸 Guy - Nam Mỹ": "English",
|
| 257 |
+
"🇬🇧 Sonia - Nữ Anh": "English",
|
| 258 |
+
"🇬🇧 Ryan - Nam Anh": "English",
|
| 259 |
+
# German
|
| 260 |
+
"🇩🇪 Katja - Deutsche Frau": "German",
|
| 261 |
+
"🇩🇪 Conrad - Deutscher Mann": "German",
|
| 262 |
+
# French
|
| 263 |
+
"🇫🇷 Denise - Française": "French",
|
| 264 |
+
"🇫🇷 Henri - Français": "French",
|
| 265 |
+
# Spanish
|
| 266 |
+
"🇪🇸 Elvira - Española": "Spanish",
|
| 267 |
+
"🇪🇸 Alvaro - Español": "Spanish",
|
| 268 |
+
# Italian
|
| 269 |
+
"🇮🇹 Elsa - Italiana": "Italian",
|
| 270 |
+
"🇮🇹 Diego - Italiano": "Italian",
|
| 271 |
+
# Japanese
|
| 272 |
+
"🇯🇵 Nanami - 日本女性": "Japanese",
|
| 273 |
+
"🇯🇵 Keita - 日本男性": "Japanese",
|
| 274 |
+
# Korean
|
| 275 |
+
"🇰🇷 SunHi - 한국 여성": "Korean",
|
| 276 |
+
"🇰🇷 BongJin - 한국 남성": "Korean",
|
| 277 |
+
# Chinese
|
| 278 |
+
"🇨🇳 Xiaoxiao - 中文女声": "Chinese",
|
| 279 |
+
"🇨🇳 Yunxi - 中文男声": "Chinese",
|
| 280 |
+
# Russian
|
| 281 |
+
"🇷🇺 Svetlana - Русская": "Russian",
|
| 282 |
+
"🇷🇺 Dmitry - Русский": "Russian",
|
| 283 |
+
# Portuguese
|
| 284 |
+
"🇵🇹 Francisca - Portuguesa": "Portuguese",
|
| 285 |
+
"🇵🇹 Antonio - Português": "Portuguese",
|
| 286 |
+
# Arabic
|
| 287 |
+
"🇸🇦 Zariyah - عربية": "Arabic",
|
| 288 |
+
"🇸🇦 Hamed - عربي": "Arabic"
|
| 289 |
+
}
|
| 290 |
+
|
| 291 |
+
def get_target_language_from_voice(voice_selection):
|
| 292 |
+
"""Map voice selection to target language for translation"""
|
| 293 |
+
return VOICE_TO_LANGUAGE.get(voice_selection, "Vietnamese")
|
| 294 |
+
|
| 295 |
+
def translate_text_with_gemini(text, target_language):
|
| 296 |
+
"""Translate text using Gemini API"""
|
| 297 |
+
try:
|
| 298 |
+
if not GEMINI_API_KEY:
|
| 299 |
+
return f"Lỗi: Cần cấu hình GEMINI_API_KEY"
|
| 300 |
+
|
| 301 |
+
if not text.strip():
|
| 302 |
+
return ""
|
| 303 |
+
|
| 304 |
+
model = genai.GenerativeModel("gemini-2.0-flash")
|
| 305 |
+
|
| 306 |
+
prompt = f"""Translate the following text to {target_language}. Return ONLY the translated text, nothing else:
|
| 307 |
+
|
| 308 |
+
{text}"""
|
| 309 |
+
|
| 310 |
+
response = model.generate_content(prompt)
|
| 311 |
+
translated_text = response.text.strip()
|
| 312 |
+
|
| 313 |
+
# Clean up any unwanted text that might be included
|
| 314 |
+
if translated_text.lower().startswith("translation:"):
|
| 315 |
+
translated_text = translated_text[12:].strip()
|
| 316 |
+
if translated_text.lower().startswith("here is"):
|
| 317 |
+
lines = translated_text.split('\n')
|
| 318 |
+
if len(lines) > 1:
|
| 319 |
+
translated_text = '\n'.join(lines[1:]).strip()
|
| 320 |
+
|
| 321 |
+
return translated_text
|
| 322 |
+
|
| 323 |
+
except Exception as e:
|
| 324 |
+
return f"Lỗi dịch thuật: {str(e)}"
|
| 325 |
+
|
| 326 |
+
def translate_audio(audio_file, target_country, voice_selection, text_format="txt"):
|
| 327 |
+
"""
|
| 328 |
+
Transcribe, translate and synthesize audio to target language with Voice Studio integration
|
| 329 |
+
"""
|
| 330 |
+
try:
|
| 331 |
+
if not GEMINI_API_KEY:
|
| 332 |
+
return "Lỗi: Cần cấu hình GEMINI_API_KEY", "Không xác định", "", target_country, None, "", "", None
|
| 333 |
+
|
| 334 |
+
if audio_file is None:
|
| 335 |
+
return "Lỗi: Vui lòng tải lên file audio", "Không xác định", "", target_country, None, "", "", None
|
| 336 |
+
|
| 337 |
+
# Get target language from voice selection
|
| 338 |
+
target_language = get_target_language_from_voice(voice_selection)
|
| 339 |
+
|
| 340 |
+
# Transcribe audio using Gemini
|
| 341 |
+
model = genai.GenerativeModel("gemini-2.0-flash")
|
| 342 |
+
|
| 343 |
+
# Read audio file
|
| 344 |
+
with open(audio_file, 'rb') as f:
|
| 345 |
+
audio_data = f.read()
|
| 346 |
+
|
| 347 |
+
# Create audio blob
|
| 348 |
+
audio_blob = {
|
| 349 |
+
'mime_type': 'audio/wav',
|
| 350 |
+
'data': audio_data
|
| 351 |
+
}
|
| 352 |
+
|
| 353 |
+
# Single API call for transcription and translation (optimized for speed)
|
| 354 |
+
combined_prompt = f"""You are a professional transcriber and translator. Process this audio in one step:
|
| 355 |
+
|
| 356 |
+
1. Transcribe the audio accurately in its original language
|
| 357 |
+
2. Identify the source language
|
| 358 |
+
3. Translate to {target_language} preserving meaning and cultural context
|
| 359 |
+
|
| 360 |
+
Format your response exactly as:
|
| 361 |
+
LANGUAGE: [detected language]
|
| 362 |
+
TRANSCRIPT: [original transcription]
|
| 363 |
+
TRANSLATION: [translation to {target_language}]"""
|
| 364 |
+
|
| 365 |
+
response = model.generate_content([combined_prompt, audio_blob])
|
| 366 |
+
full_response = response.text.strip()
|
| 367 |
+
|
| 368 |
+
# Parse combined response
|
| 369 |
+
try:
|
| 370 |
+
if "LANGUAGE:" in full_response and "TRANSCRIPT:" in full_response and "TRANSLATION:" in full_response:
|
| 371 |
+
lines = full_response.split('\n')
|
| 372 |
+
detected_lang = ""
|
| 373 |
+
transcription = ""
|
| 374 |
+
translated_text = ""
|
| 375 |
+
|
| 376 |
+
for line in lines:
|
| 377 |
+
if line.startswith("LANGUAGE:"):
|
| 378 |
+
detected_lang = line.replace("LANGUAGE:", "").strip()
|
| 379 |
+
elif line.startswith("TRANSCRIPT:"):
|
| 380 |
+
transcription = line.replace("TRANSCRIPT:", "").strip()
|
| 381 |
+
elif line.startswith("TRANSLATION:"):
|
| 382 |
+
translated_text = line.replace("TRANSLATION:", "").strip()
|
| 383 |
+
else:
|
| 384 |
+
# Fallback parsing
|
| 385 |
+
detected_lang = "Không xác định"
|
| 386 |
+
transcription = full_response.split("TRANSCRIPT:")[-1].split("TRANSLATION:")[0].strip() if "TRANSCRIPT:" in full_response else full_response
|
| 387 |
+
translated_text = full_response.split("TRANSLATION:")[-1].strip() if "TRANSLATION:" in full_response else transcription
|
| 388 |
+
except:
|
| 389 |
+
# Emergency fallback
|
| 390 |
+
detected_lang = "Không xác định"
|
| 391 |
+
transcription = full_response
|
| 392 |
+
translated_text = full_response
|
| 393 |
+
|
| 394 |
+
# Generate audio using Edge TTS (use global VOICE_MAP for performance)
|
| 395 |
+
edge_voice = VOICE_MAP.get(voice_selection, "vi-VN-HoaiMyNeural")
|
| 396 |
+
audio_data = asyncio.run(generate_speech(translated_text, edge_voice, 0.0))
|
| 397 |
+
|
| 398 |
+
# Save audio file
|
| 399 |
+
fd, temp_output_path = tempfile.mkstemp(suffix=".wav", prefix="translated_audio_")
|
| 400 |
+
os.close(fd)
|
| 401 |
+
|
| 402 |
+
# Write raw audio data to temporary file
|
| 403 |
+
with open(temp_output_path, 'wb') as f:
|
| 404 |
+
f.write(audio_data)
|
| 405 |
+
|
| 406 |
+
# Create text file for download
|
| 407 |
+
text_file_path = create_text_file(translated_text, text_format, "translated_content")
|
| 408 |
+
|
| 409 |
+
return transcription, detected_lang, translated_text, target_language, temp_output_path, transcription, translated_text, text_file_path
|
| 410 |
+
|
| 411 |
+
except Exception as e:
|
| 412 |
+
# Get target language for error response
|
| 413 |
+
target_language = get_target_language_from_voice(voice_selection) if 'voice_selection' in locals() else "Vietnamese"
|
| 414 |
+
return f"Lỗi: {str(e)}", "Lỗi", "", target_language, None, "", "", None
|
| 415 |
+
|
| 416 |
+
# Voice choices organized by country - ONLY OFFICIAL VOICES
|
| 417 |
+
voice_choices_by_country = {
|
| 418 |
+
"🇻🇳 Việt Nam": [
|
| 419 |
+
"🇻🇳 HoaiMy - Nữ Việt Chuẩn",
|
| 420 |
+
"🇻🇳 NamMinh - Nam Việt Chuẩn"
|
| 421 |
+
],
|
| 422 |
+
"🇺🇸 Hoa Kỳ": [
|
| 423 |
+
"🇺🇸 Aria - Nữ Mỹ",
|
| 424 |
+
"🇺🇸 Guy - Nam Mỹ"
|
| 425 |
+
],
|
| 426 |
+
"🇬🇧 Anh": [
|
| 427 |
+
"🇬🇧 Sonia - Nữ Anh",
|
| 428 |
+
"🇬🇧 Ryan - Nam Anh"
|
| 429 |
+
],
|
| 430 |
+
"🇩🇪 Đức": [
|
| 431 |
+
"🇩🇪 Katja - Deutsche Frau",
|
| 432 |
+
"🇩🇪 Conrad - Deutscher Mann"
|
| 433 |
+
],
|
| 434 |
+
"🇫🇷 Pháp": [
|
| 435 |
+
"🇫🇷 Denise - Française",
|
| 436 |
+
"🇫🇷 Henri - Français"
|
| 437 |
+
],
|
| 438 |
+
"🇪🇸 Tây Ban Nha": [
|
| 439 |
+
"🇪🇸 Elvira - Española",
|
| 440 |
+
"🇪🇸 Alvaro - Español"
|
| 441 |
+
],
|
| 442 |
+
"🇮🇹 Ý": [
|
| 443 |
+
"🇮🇹 Elsa - Italiana",
|
| 444 |
+
"🇮🇹 Diego - Italiano"
|
| 445 |
+
],
|
| 446 |
+
"🇯🇵 Nhật Bản": [
|
| 447 |
+
"🇯🇵 Nanami - 日本女性",
|
| 448 |
+
"🇯🇵 Keita - 日本男性"
|
| 449 |
+
],
|
| 450 |
+
"🇰🇷 Hàn Quốc": [
|
| 451 |
+
"🇰🇷 SunHi - 한국 여성",
|
| 452 |
+
"🇰🇷 BongJin - 한국 남성"
|
| 453 |
+
],
|
| 454 |
+
"🇨🇳 Trung Quốc": [
|
| 455 |
+
"🇨🇳 Xiaoxiao - 中文女声",
|
| 456 |
+
"🇨🇳 Yunxi - 中文男声"
|
| 457 |
+
],
|
| 458 |
+
"🇷🇺 Nga": [
|
| 459 |
+
"🇷🇺 Svetlana - Русская",
|
| 460 |
+
"🇷🇺 Dmitry - Русский"
|
| 461 |
+
],
|
| 462 |
+
"🇵🇹 Bồ Đào Nha": [
|
| 463 |
+
"🇵🇹 Francisca - Portuguesa",
|
| 464 |
+
"🇵🇹 Antonio - Português"
|
| 465 |
+
],
|
| 466 |
+
"🇸🇦 Ả Rập": [
|
| 467 |
+
"🇸🇦 Zariyah - عربية",
|
| 468 |
+
"🇸🇦 Hamed - عربي"
|
| 469 |
+
]
|
| 470 |
+
}
|
| 471 |
+
|
| 472 |
+
def update_voices(country):
|
| 473 |
+
"""Update voice choices based on selected country"""
|
| 474 |
+
if country in voice_choices_by_country:
|
| 475 |
+
voices = voice_choices_by_country[country]
|
| 476 |
+
return gr.Dropdown(choices=voices, value=voices[0])
|
| 477 |
+
else:
|
| 478 |
+
# Default to Vietnamese voices
|
| 479 |
+
default_voices = voice_choices_by_country["🇻🇳 Việt Nam"]
|
| 480 |
+
return gr.Dropdown(choices=default_voices, value=default_voices[0])
|
| 481 |
+
|
| 482 |
+
# Lightweight CSS - optimized for performance
|
| 483 |
+
css = """
|
| 484 |
+
* {
|
| 485 |
+
font-family: system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
|
| 486 |
+
}
|
| 487 |
+
|
| 488 |
+
.gradio-container {
|
| 489 |
+
max-width: 1200px;
|
| 490 |
+
margin: 0 auto;
|
| 491 |
+
position: relative;
|
| 492 |
+
}
|
| 493 |
+
|
| 494 |
+
/* Critical fix for dropdown interaction */
|
| 495 |
+
.gradio-container * {
|
| 496 |
+
pointer-events: auto;
|
| 497 |
+
}
|
| 498 |
+
|
| 499 |
+
/* Hide Gradio footer */
|
| 500 |
+
.footer {
|
| 501 |
+
display: none !important;
|
| 502 |
+
}
|
| 503 |
+
|
| 504 |
+
/* Custom footer to cover Gradio attribution */
|
| 505 |
+
.custom-footer {
|
| 506 |
+
position: fixed;
|
| 507 |
+
bottom: 0;
|
| 508 |
+
left: 0;
|
| 509 |
+
right: 0;
|
| 510 |
+
background: linear-gradient(135deg, #4A90E2 0%, #2E86AB 70%, #FF8A65 85%, #FF6B9D 100%);
|
| 511 |
+
color: white;
|
| 512 |
+
padding: 15px;
|
| 513 |
+
text-align: center;
|
| 514 |
+
font-weight: bold;
|
| 515 |
+
z-index: 1000;
|
| 516 |
+
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
|
| 517 |
+
}
|
| 518 |
+
|
| 519 |
+
/* Add padding to body to account for fixed footer */
|
| 520 |
+
body {
|
| 521 |
+
padding-bottom: 60px;
|
| 522 |
+
}
|
| 523 |
+
|
| 524 |
+
/* Mobile-first responsive design */
|
| 525 |
+
.input-card {
|
| 526 |
+
background: rgba(255,255,255,0.95);
|
| 527 |
+
border-radius: 16px;
|
| 528 |
+
padding: 16px;
|
| 529 |
+
margin: 10px 0;
|
| 530 |
+
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
| 531 |
+
backdrop-filter: blur(10px);
|
| 532 |
+
}
|
| 533 |
+
|
| 534 |
+
.output-area {
|
| 535 |
+
background: rgba(255,255,255,0.95);
|
| 536 |
+
border-radius: 16px;
|
| 537 |
+
padding: 16px;
|
| 538 |
+
margin: 15px 0;
|
| 539 |
+
min-height: 200px;
|
| 540 |
+
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
| 541 |
+
}
|
| 542 |
+
|
| 543 |
+
.examples-section {
|
| 544 |
+
background: rgba(255,255,255,0.9);
|
| 545 |
+
border-radius: 16px;
|
| 546 |
+
padding: 16px;
|
| 547 |
+
margin: 20px 0;
|
| 548 |
+
}
|
| 549 |
+
|
| 550 |
+
.main-header {
|
| 551 |
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 552 |
+
color: white;
|
| 553 |
+
padding: 20px;
|
| 554 |
+
border-radius: 10px;
|
| 555 |
+
margin-bottom: 20px;
|
| 556 |
+
text-align: center;
|
| 557 |
+
}
|
| 558 |
+
|
| 559 |
+
.feature-box {
|
| 560 |
+
background: #f8f9fa;
|
| 561 |
+
padding: 15px;
|
| 562 |
+
border-radius: 8px;
|
| 563 |
+
margin: 10px 0;
|
| 564 |
+
border-left: 4px solid #667eea;
|
| 565 |
+
}
|
| 566 |
+
|
| 567 |
+
.status-indicator {
|
| 568 |
+
display: inline-block;
|
| 569 |
+
padding: 5px 10px;
|
| 570 |
+
border-radius: 15px;
|
| 571 |
+
font-size: 12px;
|
| 572 |
+
font-weight: bold;
|
| 573 |
+
margin: 5px;
|
| 574 |
+
}
|
| 575 |
+
|
| 576 |
+
.status-success {
|
| 577 |
+
background-color: #d4edda;
|
| 578 |
+
color: #155724;
|
| 579 |
+
}
|
| 580 |
+
|
| 581 |
+
.status-processing {
|
| 582 |
+
background-color: #fff3cd;
|
| 583 |
+
color: #856404;
|
| 584 |
+
}
|
| 585 |
+
|
| 586 |
+
.comparison-section {
|
| 587 |
+
border: 1px solid #e0e0e0;
|
| 588 |
+
border-radius: 8px;
|
| 589 |
+
padding: 15px;
|
| 590 |
+
margin: 10px 0;
|
| 591 |
+
background: #fafafa;
|
| 592 |
+
}
|
| 593 |
+
|
| 594 |
+
.language-label {
|
| 595 |
+
font-weight: bold;
|
| 596 |
+
color: #667eea;
|
| 597 |
+
padding: 5px 10px;
|
| 598 |
+
background: #f0f2ff;
|
| 599 |
+
border-radius: 15px;
|
| 600 |
+
display: inline-block;
|
| 601 |
+
margin-bottom: 10px;
|
| 602 |
+
font-size: 14px;
|
| 603 |
+
}
|
| 604 |
+
|
| 605 |
+
.content-compare {
|
| 606 |
+
background: white;
|
| 607 |
+
border: 1px solid #ddd;
|
| 608 |
+
border-radius: 6px;
|
| 609 |
+
padding: 12px;
|
| 610 |
+
min-height: 120px;
|
| 611 |
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| 612 |
+
line-height: 1.5;
|
| 613 |
+
}
|
| 614 |
+
|
| 615 |
+
/* Reset any problematic dropdown styles */
|
| 616 |
+
.gradio-container * {
|
| 617 |
+
pointer-events: auto;
|
| 618 |
+
}
|
| 619 |
+
|
| 620 |
+
/* Remove any potential blocking overlays */
|
| 621 |
+
.gradio-container::before,
|
| 622 |
+
.gradio-container::after {
|
| 623 |
+
display: none;
|
| 624 |
+
}
|
| 625 |
+
|
| 626 |
+
/* Ensure all interactive elements work */
|
| 627 |
+
button, select, input, textarea, .gr-dropdown {
|
| 628 |
+
pointer-events: auto !important;
|
| 629 |
+
position: relative !important;
|
| 630 |
+
}
|
| 631 |
+
|
| 632 |
+
/* Simple dropdown fix without complex selectors */
|
| 633 |
+
[class*="dropdown"] {
|
| 634 |
+
position: relative !important;
|
| 635 |
+
z-index: 999 !important;
|
| 636 |
+
}
|
| 637 |
+
|
| 638 |
+
[class*="dropdown"] * {
|
| 639 |
+
pointer-events: auto !important;
|
| 640 |
+
}
|
| 641 |
+
|
| 642 |
+
/* Make sure no overlay blocks clicks */
|
| 643 |
+
.gradio-container .gr-form {
|
| 644 |
+
position: relative;
|
| 645 |
+
z-index: 1;
|
| 646 |
+
}
|
| 647 |
+
|
| 648 |
+
.gradio-container .gr-block {
|
| 649 |
+
position: relative;
|
| 650 |
+
z-index: 1;
|
| 651 |
+
}
|
| 652 |
+
|
| 653 |
+
.mobile-button {
|
| 654 |
+
width: 100% !important;
|
| 655 |
+
padding: 15px !important;
|
| 656 |
+
font-size: 1.1em !important;
|
| 657 |
+
margin: 20px 0 !important;
|
| 658 |
+
border-radius: 12px !important;
|
| 659 |
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
|
| 660 |
+
border: none !important;
|
| 661 |
+
color: white !important;
|
| 662 |
+
font-weight: bold !important;
|
| 663 |
+
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
|
| 664 |
+
}
|
| 665 |
+
|
| 666 |
+
.mobile-textbox textarea {
|
| 667 |
+
border-radius: 10px !important;
|
| 668 |
+
border: 2px solid #e0e0e0 !important;
|
| 669 |
+
padding: 12px !important;
|
| 670 |
+
font-size: 1em !important;
|
| 671 |
+
line-height: 1.5 !important;
|
| 672 |
+
}
|
| 673 |
+
|
| 674 |
+
.mobile-compare textarea {
|
| 675 |
+
border-radius: 8px !important;
|
| 676 |
+
border: 1px solid #ddd !important;
|
| 677 |
+
padding: 10px !important;
|
| 678 |
+
background: #fafafa !important;
|
| 679 |
+
font-size: 0.95em !important;
|
| 680 |
+
}
|
| 681 |
+
|
| 682 |
+
.mobile-audio {
|
| 683 |
+
margin: 10px 0 !important;
|
| 684 |
+
border-radius: 10px !important;
|
| 685 |
+
}
|
| 686 |
+
|
| 687 |
+
.mobile-file {
|
| 688 |
+
margin: 10px 0 !important;
|
| 689 |
+
border-radius: 10px !important;
|
| 690 |
+
}
|
| 691 |
+
|
| 692 |
+
/* Mobile responsive breakpoints */
|
| 693 |
+
@media (max-width: 768px) {
|
| 694 |
+
.gradio-container {
|
| 695 |
+
padding: 10px !important;
|
| 696 |
+
}
|
| 697 |
+
|
| 698 |
+
.input-card {
|
| 699 |
+
padding: 12px !important;
|
| 700 |
+
margin: 8px 0 !important;
|
| 701 |
+
}
|
| 702 |
+
|
| 703 |
+
.output-area {
|
| 704 |
+
padding: 12px !important;
|
| 705 |
+
margin: 10px 0 !important;
|
| 706 |
+
}
|
| 707 |
+
|
| 708 |
+
.examples-section {
|
| 709 |
+
padding: 12px !important;
|
| 710 |
+
}
|
| 711 |
+
|
| 712 |
+
.main-header h2 {
|
| 713 |
+
font-size: 1.5em !important;
|
| 714 |
+
}
|
| 715 |
+
|
| 716 |
+
.main-header p {
|
| 717 |
+
font-size: 1em !important;
|
| 718 |
+
}
|
| 719 |
+
|
| 720 |
+
/* Mobile layout adjustments - less aggressive */
|
| 721 |
+
.gr-row {
|
| 722 |
+
flex-direction: column;
|
| 723 |
+
}
|
| 724 |
+
|
| 725 |
+
.gr-column {
|
| 726 |
+
width: 100%;
|
| 727 |
+
margin-bottom: 15px;
|
| 728 |
+
}
|
| 729 |
+
}
|
| 730 |
+
|
| 731 |
+
@media (max-width: 480px) {
|
| 732 |
+
.gradio-container {
|
| 733 |
+
padding: 5px !important;
|
| 734 |
+
}
|
| 735 |
+
|
| 736 |
+
.input-card {
|
| 737 |
+
padding: 10px !important;
|
| 738 |
+
margin: 5px 0 !important;
|
| 739 |
+
}
|
| 740 |
+
|
| 741 |
+
.main-header {
|
| 742 |
+
padding: 15px !important;
|
| 743 |
+
}
|
| 744 |
+
|
| 745 |
+
.main-header h2 {
|
| 746 |
+
font-size: 1.3em !important;
|
| 747 |
+
}
|
| 748 |
+
|
| 749 |
+
.mobile-button {
|
| 750 |
+
padding: 12px !important;
|
| 751 |
+
font-size: 1em !important;
|
| 752 |
+
}
|
| 753 |
+
}
|
| 754 |
+
"""
|
| 755 |
+
|
| 756 |
+
# Create interface with tabs
|
| 757 |
+
with gr.Blocks(css=css, title="🎤 Voice Studio & Audio Translation") as demo:
|
| 758 |
+
# Header
|
| 759 |
+
gr.HTML("""
|
| 760 |
+
<meta charset="UTF-8">
|
| 761 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 762 |
+
<div style="text-align: center; background: linear-gradient(135deg, #4A90E2 0%, #FF6B9D 100%); color: white; padding: 20px; border-radius: 10px; margin-bottom: 20px;">
|
| 763 |
+
<h1>🎤 Voice Studio & Audio Translation</h1>
|
| 764 |
+
<p>Chuyển văn bản thành giọng nói, dịch văn bản và dịch audio sang nhiều ngôn ngữ!</p>
|
| 765 |
+
<div style="margin-top: 10px; font-size: 14px; opacity: 0.9;">
|
| 766 |
+
✨ Tính năng mới: Dịch văn bản trực tiếp trong Voice Studio
|
| 767 |
+
</div>
|
| 768 |
+
<div style="margin-top: 8px;">🧠 <strong>Digitized Brains</strong></div>
|
| 769 |
+
</div>
|
| 770 |
+
""")
|
| 771 |
+
|
| 772 |
+
with gr.Tabs():
|
| 773 |
+
# Voice Studio Tab
|
| 774 |
+
with gr.TabItem("🎤 Voice Studio"):
|
| 775 |
+
gr.HTML("""
|
| 776 |
+
<div style="display: flex; justify-content: center; gap: 15px; margin: 20px 0; flex-wrap: wrap;">
|
| 777 |
+
<div style="background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%); padding: 15px; border-radius: 10px; color: white; text-align: center; min-width: 150px;">
|
| 778 |
+
<h4>🇻🇳 Tiếng Việt</h4>
|
| 779 |
+
<p style="margin: 0; font-size: 12px;">2 giọng chuẩn</p>
|
| 780 |
+
<p style="margin: 0; font-size: 10px;">HoaiMy • NamMinh</p>
|
| 781 |
+
</div>
|
| 782 |
+
<div style="background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%); padding: 15px; border-radius: 10px; color: white; text-align: center; min-width: 150px;">
|
| 783 |
+
<h4>🇺🇸🇬🇧 English</h4>
|
| 784 |
+
<p style="margin: 0; font-size: 12px;">4 giọng chuẩn</p>
|
| 785 |
+
<p style="margin: 0; font-size: 10px;">US • UK</p>
|
| 786 |
+
</div>
|
| 787 |
+
<div style="background: linear-gradient(135deg, #45B7D1 0%, #96C93D 100%); padding: 15px; border-radius: 10px; color: white; text-align: center; min-width: 150px;">
|
| 788 |
+
<h4>🌍 Đa ngôn ngữ</h4>
|
| 789 |
+
<p style="margin: 0; font-size: 12px;">20 giọng chuẩn</p>
|
| 790 |
+
<p style="margin: 0; font-size: 10px;">10 ngôn ngữ</p>
|
| 791 |
+
</div>
|
| 792 |
+
</div>
|
| 793 |
+
""")
|
| 794 |
+
|
| 795 |
+
gr.Markdown("### 📝 Nhập nội dung và chọn giọng nói")
|
| 796 |
+
|
| 797 |
+
with gr.Row():
|
| 798 |
+
text_input = gr.Textbox(
|
| 799 |
+
placeholder="Nhập văn bản cần chuyển thành giọng nói...",
|
| 800 |
+
lines=4,
|
| 801 |
+
label="Văn bản",
|
| 802 |
+
scale=2
|
| 803 |
+
)
|
| 804 |
+
|
| 805 |
+
with gr.Row():
|
| 806 |
+
with gr.Column(scale=1):
|
| 807 |
+
country_dropdown = gr.Dropdown(
|
| 808 |
+
choices=list(voice_choices_by_country.keys()),
|
| 809 |
+
value="🇻🇳 Việt Nam",
|
| 810 |
+
label="🌍 Chọn quốc gia"
|
| 811 |
+
)
|
| 812 |
+
|
| 813 |
+
with gr.Column(scale=1):
|
| 814 |
+
voice_dropdown = gr.Dropdown(
|
| 815 |
+
choices=voice_choices_by_country["🇻🇳 Việt Nam"],
|
| 816 |
+
value="🇻🇳 HoaiMy - Nữ Việt Chuẩn",
|
| 817 |
+
label="🎭 Chọn giọng nói"
|
| 818 |
+
)
|
| 819 |
+
|
| 820 |
+
with gr.Row():
|
| 821 |
+
speed_slider = gr.Slider(
|
| 822 |
+
minimum=0.5,
|
| 823 |
+
maximum=2.0,
|
| 824 |
+
value=1.0,
|
| 825 |
+
step=0.1,
|
| 826 |
+
label="⚡ Tốc độ phát"
|
| 827 |
+
)
|
| 828 |
+
|
| 829 |
+
# Translation feature
|
| 830 |
+
with gr.Row():
|
| 831 |
+
with gr.Column(scale=1):
|
| 832 |
+
translate_checkbox = gr.Checkbox(
|
| 833 |
+
label="🌍 Dịch văn bản trước khi tạo giọng nói",
|
| 834 |
+
value=False
|
| 835 |
+
)
|
| 836 |
+
with gr.Column(scale=2):
|
| 837 |
+
translate_btn = gr.Button("🔄 DỊCH VĂN BẢN", variant="secondary", size="lg", visible=False)
|
| 838 |
+
|
| 839 |
+
# Show translated text when translation is enabled
|
| 840 |
+
translated_text_output = gr.Textbox(
|
| 841 |
+
label="📝 Văn bản đã dịch",
|
| 842 |
+
lines=3,
|
| 843 |
+
interactive=True,
|
| 844 |
+
visible=False,
|
| 845 |
+
placeholder="Văn bản sau khi dịch sẽ hiển thị ở đây..."
|
| 846 |
+
)
|
| 847 |
+
|
| 848 |
+
generate_btn = gr.Button("🎵 TẠO GIỌNG NÓI", variant="primary", size="lg")
|
| 849 |
+
|
| 850 |
+
gr.Markdown("### 🎧 Kết quả âm thanh")
|
| 851 |
+
audio_output_vs = gr.HTML(
|
| 852 |
+
value="<p style='text-align: center; color: #666; padding: 40px;'>Nhấn 'TẠO GIỌNG NÓI' để bắt đầu 🎤</p>"
|
| 853 |
+
)
|
| 854 |
+
|
| 855 |
+
# Examples section
|
| 856 |
+
gr.Markdown("### 📚 Ví dụ nhanh")
|
| 857 |
+
with gr.Row():
|
| 858 |
+
example_vn = gr.Button("🇻🇳 Tiếng Việt", size="sm")
|
| 859 |
+
example_en = gr.Button("🇺🇸 English", size="sm")
|
| 860 |
+
example_de = gr.Button("🇩🇪 Deutsch", size="sm")
|
| 861 |
+
example_translate = gr.Button("🌍 Dịch thuật", size="sm")
|
| 862 |
+
|
| 863 |
+
# Example button functions
|
| 864 |
+
def load_vn_example():
|
| 865 |
+
return "Xin chào! Chào mừng bạn đến với studio giọng nói.", "🇻🇳 Việt Nam"
|
| 866 |
+
|
| 867 |
+
def load_en_example():
|
| 868 |
+
return "Hello! Welcome to our voice studio.", "🇺🇸 Hoa Kỳ"
|
| 869 |
+
|
| 870 |
+
def load_de_example():
|
| 871 |
+
return "Hallo! Willkommen in unserem Sprachstudio.", "🇩🇪 Đức"
|
| 872 |
+
|
| 873 |
+
def load_translate_example():
|
| 874 |
+
return "Hello! This is an example text for translation.", "🇺🇸 Hoa Kỳ", True
|
| 875 |
+
|
| 876 |
+
# Translation functions
|
| 877 |
+
def toggle_translation_ui(translate_enabled):
|
| 878 |
+
"""Show/hide translation UI elements"""
|
| 879 |
+
return (
|
| 880 |
+
gr.update(visible=translate_enabled), # translate_btn
|
| 881 |
+
gr.update(visible=translate_enabled) # translated_text_output
|
| 882 |
+
)
|
| 883 |
+
|
| 884 |
+
def translate_text_interface(text, voice_selection):
|
| 885 |
+
"""Translate text for Voice Studio"""
|
| 886 |
+
if not text.strip():
|
| 887 |
+
return "Vui lòng nhập văn bản trước khi dịch"
|
| 888 |
+
|
| 889 |
+
target_language = get_target_language_from_voice(voice_selection)
|
| 890 |
+
translated = translate_text_with_gemini(text, target_language)
|
| 891 |
+
return translated
|
| 892 |
+
|
| 893 |
+
def create_voice_with_translation(original_text, translated_text, translate_enabled, voice_selection, speed):
|
| 894 |
+
"""Create voice using original or translated text"""
|
| 895 |
+
if translate_enabled and translated_text.strip() and not translated_text.startswith("Lỗi"):
|
| 896 |
+
# Use translated text
|
| 897 |
+
return create_audio_voice_studio(translated_text, voice_selection, speed)
|
| 898 |
+
else:
|
| 899 |
+
# Use original text
|
| 900 |
+
return create_audio_voice_studio(original_text, voice_selection, speed)
|
| 901 |
+
|
| 902 |
+
# Event handlers for Voice Studio
|
| 903 |
+
country_dropdown.change(
|
| 904 |
+
fn=update_voices,
|
| 905 |
+
inputs=[country_dropdown],
|
| 906 |
+
outputs=[voice_dropdown]
|
| 907 |
+
)
|
| 908 |
+
|
| 909 |
+
example_vn.click(
|
| 910 |
+
fn=load_vn_example,
|
| 911 |
+
outputs=[text_input, country_dropdown]
|
| 912 |
+
)
|
| 913 |
+
|
| 914 |
+
example_en.click(
|
| 915 |
+
fn=load_en_example,
|
| 916 |
+
outputs=[text_input, country_dropdown]
|
| 917 |
+
)
|
| 918 |
+
|
| 919 |
+
example_de.click(
|
| 920 |
+
fn=load_de_example,
|
| 921 |
+
outputs=[text_input, country_dropdown]
|
| 922 |
+
)
|
| 923 |
+
|
| 924 |
+
example_translate.click(
|
| 925 |
+
fn=load_translate_example,
|
| 926 |
+
outputs=[text_input, country_dropdown, translate_checkbox]
|
| 927 |
+
)
|
| 928 |
+
|
| 929 |
+
# Translation UI toggle
|
| 930 |
+
translate_checkbox.change(
|
| 931 |
+
fn=toggle_translation_ui,
|
| 932 |
+
inputs=[translate_checkbox],
|
| 933 |
+
outputs=[translate_btn, translated_text_output]
|
| 934 |
+
)
|
| 935 |
+
|
| 936 |
+
# Translation button
|
| 937 |
+
translate_btn.click(
|
| 938 |
+
fn=translate_text_interface,
|
| 939 |
+
inputs=[text_input, voice_dropdown],
|
| 940 |
+
outputs=[translated_text_output]
|
| 941 |
+
)
|
| 942 |
+
|
| 943 |
+
# Generate voice with translation support
|
| 944 |
+
generate_btn.click(
|
| 945 |
+
fn=create_voice_with_translation,
|
| 946 |
+
inputs=[text_input, translated_text_output, translate_checkbox, voice_dropdown, speed_slider],
|
| 947 |
+
outputs=[audio_output_vs]
|
| 948 |
+
)
|
| 949 |
+
|
| 950 |
+
# Audio Translation Tab
|
| 951 |
+
with gr.TabItem("🎙️ Audio Translation"):
|
| 952 |
+
# Colorful feature cards like Voice Studio
|
| 953 |
+
gr.HTML("""
|
| 954 |
+
<div style="display: flex; justify-content: center; gap: 15px; margin: 20px 0; flex-wrap: wrap;">
|
| 955 |
+
<div style="background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%); padding: 15px; border-radius: 10px; color: white; text-align: center; min-width: 150px;">
|
| 956 |
+
<h4>🎤 Ghi âm</h4>
|
| 957 |
+
<p style="margin: 0; font-size: 12px;">Microphone</p>
|
| 958 |
+
<p style="margin: 0; font-size: 10px;">Real-time</p>
|
| 959 |
+
</div>
|
| 960 |
+
<div style="background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%); padding: 15px; border-radius: 10px; color: white; text-align: center; min-width: 150px;">
|
| 961 |
+
<h4>📁 Upload</h4>
|
| 962 |
+
<p style="margin: 0; font-size: 12px;">Audio Files</p>
|
| 963 |
+
<p style="margin: 0; font-size: 10px;">WAV • MP3</p>
|
| 964 |
+
</div>
|
| 965 |
+
<div style="background: linear-gradient(135deg, #45B7D1 0%, #96C93D 100%); padding: 15px; border-radius: 10px; color: white; text-align: center; min-width: 150px;">
|
| 966 |
+
<h4>🔄 AI Dịch</h4>
|
| 967 |
+
<p style="margin: 0; font-size: 12px;">13 ngôn ngữ</p>
|
| 968 |
+
<p style="margin: 0; font-size: 10px;">Gemini 2.0</p>
|
| 969 |
+
</div>
|
| 970 |
+
<div style="background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%); padding: 15px; border-radius: 10px; color: white; text-align: center; min-width: 150px;">
|
| 971 |
+
<h4>🎵 Tổng hợp</h4>
|
| 972 |
+
<p style="margin: 0; font-size: 12px;">Neural TTS</p>
|
| 973 |
+
<p style="margin: 0; font-size: 10px;">26 giọng</p>
|
| 974 |
+
</div>
|
| 975 |
+
</div>
|
| 976 |
+
""")
|
| 977 |
+
|
| 978 |
+
# Input section with colorful design
|
| 979 |
+
gr.HTML("""
|
| 980 |
+
<div style="
|
| 981 |
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 982 |
+
color: white;
|
| 983 |
+
padding: 20px;
|
| 984 |
+
border-radius: 15px;
|
| 985 |
+
margin: 20px 0;
|
| 986 |
+
text-align: center;
|
| 987 |
+
box-shadow: 0 8px 32px rgba(0,0,0,0.2);
|
| 988 |
+
">
|
| 989 |
+
<h3 style="margin: 0 0 10px 0;">🎤 Tải lên file audio hoặc ghi âm trực tiếp</h3>
|
| 990 |
+
<p style="margin: 0; opacity: 0.9; font-size: 0.95em;">
|
| 991 |
+
Hỗ trợ file WAV, MP3 hoặc ghi âm real-time qua microphone
|
| 992 |
+
</p>
|
| 993 |
+
</div>
|
| 994 |
+
""")
|
| 995 |
+
|
| 996 |
+
audio_input = gr.Audio(
|
| 997 |
+
label="📎 Audio Input",
|
| 998 |
+
type="filepath",
|
| 999 |
+
sources=["upload", "microphone"],
|
| 1000 |
+
show_label=False
|
| 1001 |
+
)
|
| 1002 |
+
|
| 1003 |
+
# Settings section with gradient header
|
| 1004 |
+
gr.HTML("""
|
| 1005 |
+
<div style="
|
| 1006 |
+
background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
|
| 1007 |
+
color: white;
|
| 1008 |
+
padding: 18px;
|
| 1009 |
+
border-radius: 12px;
|
| 1010 |
+
margin: 25px 0 20px 0;
|
| 1011 |
+
text-align: center;
|
| 1012 |
+
box-shadow: 0 6px 24px rgba(255,107,107,0.3);
|
| 1013 |
+
">
|
| 1014 |
+
<h3 style="margin: 0 0 8px 0;">🌍 Cài đặt dịch thuật</h3>
|
| 1015 |
+
<p style="margin: 0; opacity: 0.9; font-size: 0.9em;">
|
| 1016 |
+
Chọn ngôn ngữ đích và giọng nói cho kết quả dịch thuật
|
| 1017 |
+
</p>
|
| 1018 |
+
</div>
|
| 1019 |
+
""")
|
| 1020 |
+
|
| 1021 |
+
# Separate dropdowns without complex wrappers to avoid CSS conflicts
|
| 1022 |
+
target_country_dropdown = gr.Dropdown(
|
| 1023 |
+
choices=list(voice_choices_by_country.keys()),
|
| 1024 |
+
value="🇻🇳 Việt Nam",
|
| 1025 |
+
label="🌍 Chọn quốc gia đích"
|
| 1026 |
+
)
|
| 1027 |
+
|
| 1028 |
+
target_voice_dropdown = gr.Dropdown(
|
| 1029 |
+
choices=voice_choices_by_country["🇻🇳 Việt Nam"],
|
| 1030 |
+
value="🇻🇳 HoaiMy - Nữ Việt Chuẩn",
|
| 1031 |
+
label="🎭 Chọn giọng nói đích"
|
| 1032 |
+
)
|
| 1033 |
+
|
| 1034 |
+
text_format_dropdown = gr.Dropdown(
|
| 1035 |
+
choices=["TXT (.txt)", "Word (.docx)"] if DOCX_AVAILABLE else ["TXT (.txt)"],
|
| 1036 |
+
value="TXT (.txt)",
|
| 1037 |
+
label="📄 Định dạng file văn bản"
|
| 1038 |
+
)
|
| 1039 |
+
|
| 1040 |
+
# Colorful action button
|
| 1041 |
+
gr.HTML("""
|
| 1042 |
+
<div style="margin: 25px 0 15px 0; text-align: center;">
|
| 1043 |
+
<div style="
|
| 1044 |
+
background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
|
| 1045 |
+
color: white;
|
| 1046 |
+
padding: 12px 20px;
|
| 1047 |
+
border-radius: 8px;
|
| 1048 |
+
margin-bottom: 15px;
|
| 1049 |
+
box-shadow: 0 4px 15px rgba(78,205,196,0.3);
|
| 1050 |
+
display: inline-block;
|
| 1051 |
+
">
|
| 1052 |
+
<h4 style="margin: 0; font-size: 1em;">⚡ Sẵn sàng xử lý</h4>
|
| 1053 |
+
</div>
|
| 1054 |
+
</div>
|
| 1055 |
+
""")
|
| 1056 |
+
|
| 1057 |
+
translate_btn = gr.Button(
|
| 1058 |
+
"🔄 BẮT ĐẦU DỊCH",
|
| 1059 |
+
variant="primary",
|
| 1060 |
+
size="lg",
|
| 1061 |
+
elem_classes=["mobile-button"]
|
| 1062 |
+
)
|
| 1063 |
+
|
| 1064 |
+
# Results section with colorful headers
|
| 1065 |
+
gr.HTML("""
|
| 1066 |
+
<div style="
|
| 1067 |
+
background: linear-gradient(135deg, #45B7D1 0%, #96C93D 100%);
|
| 1068 |
+
color: white;
|
| 1069 |
+
padding: 18px;
|
| 1070 |
+
border-radius: 12px;
|
| 1071 |
+
margin: 30px 0 20px 0;
|
| 1072 |
+
text-align: center;
|
| 1073 |
+
box-shadow: 0 6px 24px rgba(69,183,209,0.3);
|
| 1074 |
+
">
|
| 1075 |
+
<h3 style="margin: 0 0 8px 0;">📊 Kết quả xử lý</h3>
|
| 1076 |
+
<p style="margin: 0; opacity: 0.9; font-size: 0.9em;">
|
| 1077 |
+
Phiên âm, dịch thuật và tổng hợp giọng nói
|
| 1078 |
+
</p>
|
| 1079 |
+
</div>
|
| 1080 |
+
""")
|
| 1081 |
+
|
| 1082 |
+
# Dynamic status indicator
|
| 1083 |
+
status_text = gr.HTML("""
|
| 1084 |
+
<div style="
|
| 1085 |
+
text-align: center;
|
| 1086 |
+
margin: 20px 0;
|
| 1087 |
+
padding: 15px;
|
| 1088 |
+
background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
|
| 1089 |
+
border-radius: 12px;
|
| 1090 |
+
color: white;
|
| 1091 |
+
box-shadow: 0 4px 15px rgba(168,85,247,0.3);
|
| 1092 |
+
">
|
| 1093 |
+
<span style="font-weight: bold; font-size: 1.1em;">
|
| 1094 |
+
✅ Sẵn sàng xử lý
|
| 1095 |
+
</span>
|
| 1096 |
+
</div>
|
| 1097 |
+
""")
|
| 1098 |
+
|
| 1099 |
+
# Card-based layout for mobile
|
| 1100 |
+
with gr.Column(elem_classes=["output-area"]):
|
| 1101 |
+
# Original content card
|
| 1102 |
+
gr.HTML("""
|
| 1103 |
+
<div style="
|
| 1104 |
+
background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
|
| 1105 |
+
padding: 15px;
|
| 1106 |
+
border-radius: 12px;
|
| 1107 |
+
margin: 15px 0;
|
| 1108 |
+
border-left: 4px solid #2196F3;
|
| 1109 |
+
">
|
| 1110 |
+
<h4 style="margin: 0 0 10px 0; color: #1976D2;">📝 Nội dung gốc từ audio</h4>
|
| 1111 |
+
</div>
|
| 1112 |
+
""")
|
| 1113 |
+
|
| 1114 |
+
transcription_output = gr.Textbox(
|
| 1115 |
+
label="🎯 Phiên âm từ audio",
|
| 1116 |
+
lines=4,
|
| 1117 |
+
interactive=False,
|
| 1118 |
+
placeholder="Nội dung phiên âm từ file audio sẽ hiển thị ở đây...",
|
| 1119 |
+
elem_classes=["mobile-textbox"]
|
| 1120 |
+
)
|
| 1121 |
+
|
| 1122 |
+
detected_language = gr.Textbox(
|
| 1123 |
+
label="🌐 Ngôn ngữ được phát hiện",
|
| 1124 |
+
lines=1,
|
| 1125 |
+
interactive=False,
|
| 1126 |
+
placeholder="Tự động nhận diện...",
|
| 1127 |
+
elem_classes=["mobile-textbox"]
|
| 1128 |
+
)
|
| 1129 |
+
|
| 1130 |
+
|
| 1131 |
+
# Translation result card
|
| 1132 |
+
gr.HTML("""
|
| 1133 |
+
<div style="
|
| 1134 |
+
background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
|
| 1135 |
+
padding: 15px;
|
| 1136 |
+
border-radius: 12px;
|
| 1137 |
+
margin: 15px 0;
|
| 1138 |
+
border-left: 4px solid #4CAF50;
|
| 1139 |
+
">
|
| 1140 |
+
<h4 style="margin: 0 0 10px 0; color: #388E3C;">✨ Kết quả dịch thuật</h4>
|
| 1141 |
+
</div>
|
| 1142 |
+
""")
|
| 1143 |
+
|
| 1144 |
+
translation_output = gr.Textbox(
|
| 1145 |
+
label="🔄 Nội dung đã dịch",
|
| 1146 |
+
lines=4,
|
| 1147 |
+
interactive=False,
|
| 1148 |
+
placeholder="Bản dịch sẽ hiển thị ở đây...",
|
| 1149 |
+
elem_classes=["mobile-textbox"]
|
| 1150 |
+
)
|
| 1151 |
+
|
| 1152 |
+
target_language_display = gr.Textbox(
|
| 1153 |
+
label="🎯 Ngôn ngữ đích",
|
| 1154 |
+
lines=1,
|
| 1155 |
+
interactive=False,
|
| 1156 |
+
placeholder="Chưa chọn...",
|
| 1157 |
+
elem_classes=["mobile-textbox"]
|
| 1158 |
+
)
|
| 1159 |
+
|
| 1160 |
+
# Mobile-friendly comparison section
|
| 1161 |
+
with gr.Accordion("🔍 So sánh nội dung", open=False):
|
| 1162 |
+
gr.HTML("""
|
| 1163 |
+
<div style="
|
| 1164 |
+
text-align: center;
|
| 1165 |
+
margin-bottom: 15px;
|
| 1166 |
+
padding: 10px;
|
| 1167 |
+
background: #f5f5f5;
|
| 1168 |
+
border-radius: 8px;
|
| 1169 |
+
">
|
| 1170 |
+
<p style="color: #666; font-style: italic; margin: 0;">
|
| 1171 |
+
Xem nội dung gốc và bản dịch để so sánh
|
| 1172 |
+
</p>
|
| 1173 |
+
</div>
|
| 1174 |
+
""")
|
| 1175 |
+
|
| 1176 |
+
# Stack vertically on mobile for better readability
|
| 1177 |
+
with gr.Column():
|
| 1178 |
+
gr.HTML("""
|
| 1179 |
+
<div style="
|
| 1180 |
+
background: #e3f2fd;
|
| 1181 |
+
padding: 10px;
|
| 1182 |
+
border-radius: 8px;
|
| 1183 |
+
margin: 10px 0;
|
| 1184 |
+
text-align: center;
|
| 1185 |
+
font-weight: bold;
|
| 1186 |
+
color: #1976D2;
|
| 1187 |
+
">📝 Ngôn ngữ gốc</div>
|
| 1188 |
+
""")
|
| 1189 |
+
original_compare = gr.Textbox(
|
| 1190 |
+
label="",
|
| 1191 |
+
lines=4,
|
| 1192 |
+
interactive=False,
|
| 1193 |
+
show_label=False,
|
| 1194 |
+
placeholder="Nội dung phiên âm từ audio sẽ hiển thị ở đây...",
|
| 1195 |
+
elem_classes=["mobile-compare"]
|
| 1196 |
+
)
|
| 1197 |
+
|
| 1198 |
+
gr.HTML("""
|
| 1199 |
+
<div style="
|
| 1200 |
+
background: #e8f5e8;
|
| 1201 |
+
padding: 10px;
|
| 1202 |
+
border-radius: 8px;
|
| 1203 |
+
margin: 15px 0 5px 0;
|
| 1204 |
+
text-align: center;
|
| 1205 |
+
font-weight: bold;
|
| 1206 |
+
color: #388E3C;
|
| 1207 |
+
">✨ Sau khi dịch</div>
|
| 1208 |
+
""")
|
| 1209 |
+
translated_compare = gr.Textbox(
|
| 1210 |
+
label="",
|
| 1211 |
+
lines=4,
|
| 1212 |
+
interactive=False,
|
| 1213 |
+
show_label=False,
|
| 1214 |
+
placeholder="Nội dung sau khi dịch sẽ hiển thị ở đây...",
|
| 1215 |
+
elem_classes=["mobile-compare"]
|
| 1216 |
+
)
|
| 1217 |
+
|
| 1218 |
+
# Mobile-optimized download section
|
| 1219 |
+
with gr.Accordion("💾 Tải xuống kết quả", open=True):
|
| 1220 |
+
gr.HTML("""
|
| 1221 |
+
<div style="
|
| 1222 |
+
background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%);
|
| 1223 |
+
padding: 15px;
|
| 1224 |
+
border-radius: 12px;
|
| 1225 |
+
margin: 15px 0;
|
| 1226 |
+
border-left: 4px solid #FF9800;
|
| 1227 |
+
text-align: center;
|
| 1228 |
+
">
|
| 1229 |
+
<h4 style="margin: 0 0 10px 0; color: #E65100;">💾 Tải xuống kết quả</h4>
|
| 1230 |
+
<p style="color: #BF360C; margin: 0; font-style: italic;">
|
| 1231 |
+
File audio và văn bản đã dịch
|
| 1232 |
+
</p>
|
| 1233 |
+
</div>
|
| 1234 |
+
""")
|
| 1235 |
+
|
| 1236 |
+
# Stack downloads vertically for mobile
|
| 1237 |
+
with gr.Column():
|
| 1238 |
+
gr.HTML("""
|
| 1239 |
+
<div style="
|
| 1240 |
+
background: #e3f2fd;
|
| 1241 |
+
padding: 12px;
|
| 1242 |
+
border-radius: 8px;
|
| 1243 |
+
margin: 15px 0 10px 0;
|
| 1244 |
+
text-align: center;
|
| 1245 |
+
font-weight: bold;
|
| 1246 |
+
color: #1976D2;
|
| 1247 |
+
">🔊 Audio đã dịch</div>
|
| 1248 |
+
""")
|
| 1249 |
+
audio_output_at = gr.Audio(
|
| 1250 |
+
label="",
|
| 1251 |
+
type="filepath",
|
| 1252 |
+
show_label=False,
|
| 1253 |
+
elem_classes=["mobile-audio"]
|
| 1254 |
+
)
|
| 1255 |
+
|
| 1256 |
+
gr.HTML("""
|
| 1257 |
+
<div style="
|
| 1258 |
+
background: #e8f5e8;
|
| 1259 |
+
padding: 12px;
|
| 1260 |
+
border-radius: 8px;
|
| 1261 |
+
margin: 25px 0 10px 0;
|
| 1262 |
+
text-align: center;
|
| 1263 |
+
font-weight: bold;
|
| 1264 |
+
color: #388E3C;
|
| 1265 |
+
">📄 Văn bản đã dịch</div>
|
| 1266 |
+
""")
|
| 1267 |
+
text_output = gr.File(
|
| 1268 |
+
label="",
|
| 1269 |
+
file_count="single",
|
| 1270 |
+
file_types=[".txt", ".docx"],
|
| 1271 |
+
show_label=False,
|
| 1272 |
+
elem_classes=["mobile-file"]
|
| 1273 |
+
)
|
| 1274 |
+
|
| 1275 |
+
# Event handlers for Audio Translation with colorful status
|
| 1276 |
+
def update_status_processing():
|
| 1277 |
+
return """
|
| 1278 |
+
<div style="
|
| 1279 |
+
text-align: center;
|
| 1280 |
+
margin: 20px 0;
|
| 1281 |
+
padding: 15px;
|
| 1282 |
+
background: linear-gradient(135deg, #FF8E53 0%, #FF6B6B 100%);
|
| 1283 |
+
border-radius: 12px;
|
| 1284 |
+
color: white;
|
| 1285 |
+
box-shadow: 0 4px 15px rgba(255,142,83,0.3);
|
| 1286 |
+
">
|
| 1287 |
+
<span style="font-weight: bold; font-size: 1.1em;">
|
| 1288 |
+
⏳ Đang xử lý...
|
| 1289 |
+
</span>
|
| 1290 |
+
</div>
|
| 1291 |
+
"""
|
| 1292 |
+
|
| 1293 |
+
def update_status_complete():
|
| 1294 |
+
return """
|
| 1295 |
+
<div style="
|
| 1296 |
+
text-align: center;
|
| 1297 |
+
margin: 20px 0;
|
| 1298 |
+
padding: 15px;
|
| 1299 |
+
background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
|
| 1300 |
+
border-radius: 12px;
|
| 1301 |
+
color: white;
|
| 1302 |
+
box-shadow: 0 4px 15px rgba(78,205,196,0.3);
|
| 1303 |
+
">
|
| 1304 |
+
<span style="font-weight: bold; font-size: 1.1em;">
|
| 1305 |
+
✅ Hoàn thành!
|
| 1306 |
+
</span>
|
| 1307 |
+
</div>
|
| 1308 |
+
"""
|
| 1309 |
+
|
| 1310 |
+
target_country_dropdown.change(
|
| 1311 |
+
fn=update_voices,
|
| 1312 |
+
inputs=[target_country_dropdown],
|
| 1313 |
+
outputs=[target_voice_dropdown]
|
| 1314 |
+
)
|
| 1315 |
+
|
| 1316 |
+
# Update target language display when dropdown changes
|
| 1317 |
+
target_voice_dropdown.change(
|
| 1318 |
+
fn=lambda voice: voice,
|
| 1319 |
+
inputs=[target_voice_dropdown],
|
| 1320 |
+
outputs=[target_language_display]
|
| 1321 |
+
)
|
| 1322 |
+
|
| 1323 |
+
# Helper function to extract format
|
| 1324 |
+
def get_format_from_dropdown(format_choice):
|
| 1325 |
+
if "Word" in format_choice:
|
| 1326 |
+
return "docx"
|
| 1327 |
+
return "txt"
|
| 1328 |
+
|
| 1329 |
+
translate_btn.click(
|
| 1330 |
+
fn=lambda: update_status_processing(),
|
| 1331 |
+
outputs=[status_text]
|
| 1332 |
+
).then(
|
| 1333 |
+
fn=lambda audio, country, voice, fmt: translate_audio(audio, country, voice, get_format_from_dropdown(fmt)),
|
| 1334 |
+
inputs=[audio_input, target_country_dropdown, target_voice_dropdown, text_format_dropdown],
|
| 1335 |
+
outputs=[
|
| 1336 |
+
transcription_output,
|
| 1337 |
+
detected_language,
|
| 1338 |
+
translation_output,
|
| 1339 |
+
target_language_display,
|
| 1340 |
+
audio_output_at,
|
| 1341 |
+
original_compare,
|
| 1342 |
+
translated_compare,
|
| 1343 |
+
text_output
|
| 1344 |
+
]
|
| 1345 |
+
).then(
|
| 1346 |
+
fn=lambda: update_status_complete(),
|
| 1347 |
+
outputs=[status_text]
|
| 1348 |
+
)
|
| 1349 |
+
|
| 1350 |
+
# Footer
|
| 1351 |
+
gr.HTML("""
|
| 1352 |
+
<div class="custom-footer">
|
| 1353 |
+
<div style="display: flex; justify-content: center; align-items: center; gap: 15px; flex-wrap: wrap;">
|
| 1354 |
+
<div style="display: flex; align-items: center; gap: 8px;">
|
| 1355 |
+
<div style="background: rgba(255,255,255,0.2); padding: 8px 15px; border-radius: 20px; font-size: 16px;">
|
| 1356 |
+
🧠 DB
|
| 1357 |
+
</div>
|
| 1358 |
+
<span style="font-size: 18px; font-weight: bold;">Digitized Brains</span>
|
| 1359 |
+
</div>
|
| 1360 |
+
<div style="font-size: 14px; opacity: 0.9;">
|
| 1361 |
+
Voice Studio - AI Powered
|
| 1362 |
+
</div>
|
| 1363 |
+
</div>
|
| 1364 |
+
</div>
|
| 1365 |
+
""")
|
| 1366 |
+
|
| 1367 |
+
if __name__ == "__main__":
|
| 1368 |
+
import sys
|
| 1369 |
+
import locale
|
| 1370 |
+
import os
|
| 1371 |
+
|
| 1372 |
+
# Ensure UTF-8 encoding
|
| 1373 |
+
if sys.platform == 'win32':
|
| 1374 |
+
os.environ['PYTHONIOENCODING'] = 'utf-8'
|
| 1375 |
+
|
| 1376 |
+
# Hugging Face Spaces configuration
|
| 1377 |
+
port = int(os.environ.get("GRADIO_SERVER_PORT", 7860))
|
| 1378 |
+
|
| 1379 |
+
demo.launch(
|
| 1380 |
+
server_name="0.0.0.0",
|
| 1381 |
+
server_port=port,
|
| 1382 |
+
share=False
|
| 1383 |
+
)
|
requirements.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
gradio>=4.0.0
|
| 2 |
+
google-generativeai>=0.8.0
|
| 3 |
+
gtts>=2.5.0
|
| 4 |
+
soundfile>=0.13.0
|
| 5 |
+
edge-tts>=6.1.0
|
| 6 |
+
python-docx>=1.1.0
|
| 7 |
+
numpy>=1.26.0
|