Update app.py
Browse files
app.py
CHANGED
|
@@ -9,7 +9,6 @@ import google.generativeai as genai
|
|
| 9 |
import logging
|
| 10 |
|
| 11 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(threadName)s - %(message)s')
|
| 12 |
-
logging.info(f"Gradio version: {gr.__version__}")
|
| 13 |
|
| 14 |
GOOGLE_API_KEY = os.environ.get('GOOGLE_API_KEY')
|
| 15 |
model = None
|
|
@@ -23,7 +22,7 @@ if GOOGLE_API_KEY:
|
|
| 23 |
else:
|
| 24 |
logging.warning("کلید API گوگل (GOOGLE_API_KEY) تنظیم نشده است.")
|
| 25 |
|
| 26 |
-
# --- دیکشنری کامل صداهای انگلیسی
|
| 27 |
language_dict_persian_keys = {
|
| 28 |
'انگلیسی (آمریکا) - جنی (زن)': 'en-US-JennyNeural', 'انگلیسی (آمریکا) - گای (مرد)': 'en-US-GuyNeural',
|
| 29 |
'انگلیسی (آمریکا) - آنا (زن، صدای کودک)': 'en-US-AnaNeural', 'انگلیسی (آمریکا) - آریا (زن)': 'en-US-AriaNeural',
|
|
@@ -59,278 +58,366 @@ language_dict_persian_keys = {
|
|
| 59 |
}
|
| 60 |
|
| 61 |
async def translate_text_gemini_async(text, target_language="English"):
|
| 62 |
-
|
| 63 |
-
if not
|
| 64 |
-
if not text or not text.strip(): logging.warning("Translate: Empty input text."); return "Error: Input text is empty.", None
|
| 65 |
try:
|
| 66 |
prompt = f"Translate the following Persian text to {target_language}. Provide only the translated English text, naturally and fluently, without any extra phrases, explanations, or markdown formatting. Be concise and accurate.\n\nPersian: \"{text}\"\n{target_language}:"
|
| 67 |
response = await model.generate_content_async(prompt)
|
| 68 |
translated_text = response.text.strip()
|
| 69 |
if translated_text.lower().startswith(f"{target_language.lower()}:"):
|
| 70 |
translated_text = translated_text[len(target_language)+1:].strip()
|
| 71 |
-
return "
|
| 72 |
-
except Exception as e: logging.error(f"Gemini translation error: {e}", exc_info=True); return f"
|
| 73 |
|
| 74 |
async def text_to_speech_edge_tts_async(text_to_speak, tts_voice_key, rate, volume, pitch):
|
| 75 |
-
|
| 76 |
-
if not text_to_speak or not text_to_speak.strip(): logging.warning("TTS: Empty input text."); return "TTS Error: Input text is empty.", None
|
| 77 |
voice_id = language_dict_persian_keys.get(tts_voice_key)
|
| 78 |
-
if voice_id is None: logging.error(f"TTS: Voice key '{tts_voice_key}' not found."); return f"
|
| 79 |
try:
|
| 80 |
rate_str, volume_str, pitch_str = f"{int(rate):+g}%", f"{int(volume):+g}%", f"{int(pitch):+g}Hz"
|
| 81 |
communicate = edge_tts.Communicate(text_to_speak, voice_id, rate=rate_str, volume=volume_str, pitch=pitch_str)
|
| 82 |
-
with tempfile.NamedTemporaryFile(delete=False, suffix=".mp3") as tmp_file:
|
|
|
|
| 83 |
await communicate.save(tmp_path)
|
| 84 |
-
return "TTS
|
| 85 |
-
except Exception as e: logging.error(f"Edge-TTS error: {e}", exc_info=True); return f"
|
| 86 |
|
| 87 |
-
# --- مدیریت Event Loop (نسخه پایدارتر و دقیقتر) ---
|
| 88 |
_thread_local = threading.local()
|
| 89 |
|
| 90 |
def get_event_loop():
|
| 91 |
-
if not hasattr(_thread_local, 'loop'):
|
| 92 |
_thread_local.loop = asyncio.new_event_loop()
|
| 93 |
-
logging.info(f"Created new event loop for thread {threading.get_ident()}")
|
| 94 |
|
| 95 |
-
# همیشه قبل از استفاده، لوپ را برای ترد فعلی تنظیم کنید
|
| 96 |
-
# این کار از بسیاری از خطاهای مربوط به "no current event loop" جلوگیری میکند
|
| 97 |
try:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 98 |
asyncio.set_event_loop(_thread_local.loop)
|
| 99 |
-
|
| 100 |
-
# اگر لوپ در حال اجرا باشد، ممکن است این خطا رخ دهد.
|
| 101 |
-
# معمولا اگر get_event_loop() به درستی استفاده شود و لوپ بسته نشود،
|
| 102 |
-
# این حالت نباید زیاد پیش بیاید.
|
| 103 |
-
if "cannot be called from a running event loop" not in str(e).lower():
|
| 104 |
-
logging.warning(f"RuntimeError setting event loop (possibly already running): {e}")
|
| 105 |
-
# با این حال، اطمینان حاصل میکنیم که لوپ ما لوپ فعلی است
|
| 106 |
-
if asyncio.get_event_loop_policy().get_event_loop() is not _thread_local.loop:
|
| 107 |
-
asyncio.set_event_loop(_thread_local.loop) # تلاش مجدد اگر لوپ فعلی متفاوت بود
|
| 108 |
-
|
| 109 |
return _thread_local.loop
|
| 110 |
|
| 111 |
|
| 112 |
def translate_and_speak_sync_wrapper(persian_text, english_tts_voice_key, rate, volume, pitch):
|
| 113 |
-
logging.info(f"Wrapper called. Text: '{persian_text[:
|
| 114 |
-
loop = get_event_loop()
|
| 115 |
-
|
|
|
|
|
|
|
| 116 |
if not GOOGLE_API_KEY or not model:
|
| 117 |
-
msg = "خطا: سرویس ترجمه پیکربندی نشده است. لطفاً از تنظیم GOOGLE_API_KEY
|
| 118 |
-
logging.error(msg)
|
|
|
|
|
|
|
| 119 |
if not persian_text or not persian_text.strip():
|
| 120 |
msg = "لطفاً متن فارسی را برای ترجمه وارد کنید."
|
| 121 |
-
logging.warning(msg)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 122 |
try:
|
| 123 |
-
# ترجمه
|
| 124 |
translation_status_msg, translated_text = loop.run_until_complete(
|
| 125 |
translate_text_gemini_async(persian_text)
|
| 126 |
)
|
| 127 |
-
if "خطا" in translation_status_msg.lower() or not translated_text:
|
| 128 |
err_msg = f"ترجمه ناموفق: {translation_status_msg} {translated_text or ''}"
|
| 129 |
-
logging.error(err_msg)
|
|
|
|
|
|
|
| 130 |
|
| 131 |
-
# تبدیل به گفتار
|
| 132 |
tts_status_msg, audio_path = loop.run_until_complete(
|
| 133 |
text_to_speech_edge_tts_async(translated_text, english_tts_voice_key, rate, volume, pitch)
|
| 134 |
)
|
| 135 |
-
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
|
| 140 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 141 |
except Exception as e:
|
| 142 |
logging.error(f"خطای غیرمنتظره در wrapper: {e}", exc_info=True)
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
|
| 147 |
-
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 152 |
FLY_WHITE_HEX = "#FFFFFF"
|
| 153 |
-
FLY_BORDER_COLOR_HEX = "#D1D5DB"
|
| 154 |
-
FLY_INPUT_BG_HEX = "#FFFFFF"
|
| 155 |
-
FLY_PANEL_BG_HEX = "#
|
| 156 |
-
|
| 157 |
-
app_theme = gr.themes.
|
| 158 |
-
|
| 159 |
-
secondary_hue=gr.themes.colors.emerald,
|
| 160 |
-
neutral_hue=gr.themes.colors.slate,
|
| 161 |
-
font=[gr.themes.GoogleFont("Vazirmatn"), "Arial", "sans-serif"],
|
| 162 |
).set(
|
| 163 |
body_background_fill=FLY_LIGHT_BACKGROUND_HEX,
|
| 164 |
)
|
| 165 |
|
| 166 |
-
# CSS قبلی که زیبا بود، با اصلاحات بسیار جزئی و محتاطانه
|
| 167 |
-
# تمرکز بر عدم دستکاری زیاد در ظاهر پیشفرض المانهای ورودی
|
| 168 |
custom_css = f"""
|
| 169 |
-
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700&display=swap');
|
| 170 |
-
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
|
| 171 |
-
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
|
|
|
|
| 172 |
:root {{
|
| 173 |
-
--fly-primary: {FLY_PRIMARY_COLOR_HEX};
|
| 174 |
-
--fly-
|
| 175 |
-
--fly-
|
| 176 |
-
--fly-
|
| 177 |
-
--fly-
|
| 178 |
-
--
|
| 179 |
-
--
|
| 180 |
-
}
|
| 181 |
-
|
| 182 |
-
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
|
| 187 |
-
.
|
| 188 |
-
|
| 189 |
-
|
| 190 |
-
|
| 191 |
-
|
| 192 |
-
|
| 193 |
-
|
| 194 |
-
|
| 195 |
-
|
| 196 |
-
/* --- استایل ورودیها با حداقل تغییرات ممکن برای حفظ عملکرد --- */
|
| 197 |
-
.gr-input > label + div > textarea, /* Textbox */
|
| 198 |
-
.gr-input > label + div > input, /* Text (اگر استفاده شود) */
|
| 199 |
-
.gr-dropdown > label + div > div > select {{ /* Dropdown */
|
| 200 |
-
border-radius: 8px !important;
|
| 201 |
-
border: 1.5px solid var(--fly-border) !important;
|
| 202 |
-
font-size: 0.9em !important;
|
| 203 |
-
background-color: var(--fly-input-bg) !important;
|
| 204 |
-
padding: 10px 12px !important;
|
| 205 |
-
line-height: 1.5;
|
| 206 |
-
width: 100% !important;
|
| 207 |
-
box-sizing: border-box !important;
|
| 208 |
-
-webkit-tap-highlight-color: transparent;
|
| 209 |
-
font-family: var(--global-font) !important;
|
| 210 |
-
color: var(--fly-text) !important;
|
| 211 |
-
/* appearance: none; -webkit-appearance: none; -moz-appearance: none; /* موقتا حذف برای تست */
|
| 212 |
-
}}
|
| 213 |
-
.gr-input > label + div > textarea:focus,
|
| 214 |
-
.gr-input > label + div > input:focus,
|
| 215 |
-
.gr-dropdown > label + div > div > select:focus {{
|
| 216 |
-
border-color: var(--fly-primary) !important;
|
| 217 |
-
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
|
| 218 |
-
}}
|
| 219 |
-
/* عدم استفاده از ::after برای دراپ داون در این مرحله */
|
| 220 |
-
|
| 221 |
-
.gr-textbox[label*="ترجمه انگلیسی"] > label + div > textarea {{ /* اطمینان از اینکه target درست است */
|
| 222 |
-
background-color: var(--fly-panel-bg) !important;
|
| 223 |
-
border-color: #A5D5FE !important;
|
| 224 |
-
min-height: 90px;
|
| 225 |
-
font-family: var(--english-font) !important;
|
| 226 |
-
font-size: 0.95em !important;
|
| 227 |
-
}}
|
| 228 |
-
.gr-panel, div[label="تنظیمات صدا"] > .gr-accordion > .gr-panel {{
|
| 229 |
-
border-radius: 8px !important; border: 1px solid var(--fly-border) !important;
|
| 230 |
-
background-color: var(--fly-light-bg) !important;
|
| 231 |
-
padding: 0.7rem 0.9rem !important;
|
| 232 |
-
margin-top: 0.5rem; box-shadow: none;
|
| 233 |
}}
|
| 234 |
-
|
| 235 |
-
|
| 236 |
-
|
| 237 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 238 |
}}
|
| 239 |
-
|
| 240 |
-
|
| 241 |
-
|
| 242 |
-
|
| 243 |
-
|
| 244 |
-
|
| 245 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 246 |
}}
|
| 247 |
-
|
| 248 |
-
.
|
| 249 |
-
.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 250 |
footer, .gradio-footer {{display: none !important;}}
|
| 251 |
|
| 252 |
-
|
| 253 |
-
|
| 254 |
-
.
|
| 255 |
-
|
| 256 |
-
|
| 257 |
-
|
| 258 |
-
.
|
| 259 |
-
|
| 260 |
-
|
| 261 |
-
|
| 262 |
-
|
| 263 |
-
|
| 264 |
-
|
| 265 |
-
|
| 266 |
-
.
|
| 267 |
-
}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 268 |
"""
|
| 269 |
|
| 270 |
default_english_tts_voice = 'انگلیسی (آمریکا) - جنی (زن)'
|
| 271 |
-
if not language_dict_persian_keys
|
|
|
|
|
|
|
|
|
|
| 272 |
default_english_tts_voice = list(language_dict_persian_keys.keys())[0] if language_dict_persian_keys else None
|
| 273 |
|
| 274 |
-
|
| 275 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 276 |
|
| 277 |
with gr.Column(elem_classes=["main-content-area-fly"]):
|
| 278 |
if not GOOGLE_API_KEY or not model:
|
| 279 |
-
missing_key_msg = "⚠️ **ترجمه
|
| 280 |
-
if not GOOGLE_API_KEY: missing_key_msg += "کلید API گوگل تنظیم نشده."
|
| 281 |
-
elif not model: missing_key_msg += "خطا در مدل Gemini."
|
| 282 |
-
gr.Markdown(f"<div class='api-warning-message-fly'>{missing_key_msg} لطفاً Secrets را بررسی کنید.</div>")
|
| 283 |
-
|
| 284 |
-
with gr.Row(elem_classes=["main-content-row-fly"]):
|
| 285 |
-
with gr.Column():
|
| 286 |
-
input_text_persian = gr.Textbox(
|
| 287 |
-
lines=3, label="📝 متن فارسی:", placeholder="اینجا بنویسید...",
|
| 288 |
-
)
|
| 289 |
-
language_dropdown_tts_english = gr.Dropdown(
|
| 290 |
-
choices=list(language_dict_persian_keys.keys()) if language_dict_persian_keys else ["لیست خالی"],
|
| 291 |
-
value=default_english_tts_voice, label="🗣️ انتخاب گوینده:", interactive=bool(language_dict_persian_keys)
|
| 292 |
-
)
|
| 293 |
-
with gr.Accordion("تنظیمات صدا", open=False): # اطمینان از لیبل صحیح برای CSS
|
| 294 |
-
rate_slider = gr.Slider(-100, 100, 0, step=10, label="سرعت")
|
| 295 |
-
volume_slider = gr.Slider(-100, 100, 0, step=10, label="حجم")
|
| 296 |
-
pitch_slider = gr.Slider(-50, 50, 0, step=5, label="گام")
|
| 297 |
-
|
| 298 |
-
with gr.Group(elem_classes=["fly-submit-button-container"]): # استفاده از Group
|
| 299 |
-
submit_button = gr.Button("🚀 ترجمه و تلفظ", variant="primary")
|
| 300 |
|
| 301 |
-
|
| 302 |
-
|
| 303 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 304 |
|
| 305 |
-
|
| 306 |
-
|
| 307 |
-
|
| 308 |
-
|
| 309 |
-
|
| 310 |
-
|
| 311 |
-
|
| 312 |
-
|
| 313 |
-
|
| 314 |
-
|
| 315 |
-
|
| 316 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 317 |
|
| 318 |
-
|
| 319 |
-
|
| 320 |
-
|
| 321 |
-
|
| 322 |
-
|
| 323 |
-
|
| 324 |
)
|
| 325 |
-
|
| 326 |
-
|
|
|
|
|
|
|
| 327 |
|
| 328 |
-
|
| 329 |
-
|
| 330 |
-
|
| 331 |
-
|
| 332 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 333 |
|
| 334 |
if __name__ == "__main__":
|
| 335 |
-
if not language_dict_persian_keys:
|
| 336 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
import logging
|
| 10 |
|
| 11 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(threadName)s - %(message)s')
|
|
|
|
| 12 |
|
| 13 |
GOOGLE_API_KEY = os.environ.get('GOOGLE_API_KEY')
|
| 14 |
model = None
|
|
|
|
| 22 |
else:
|
| 23 |
logging.warning("کلید API گوگل (GOOGLE_API_KEY) تنظیم نشده است.")
|
| 24 |
|
| 25 |
+
# --- دیکشنری کامل صداهای انگلیسی ---
|
| 26 |
language_dict_persian_keys = {
|
| 27 |
'انگلیسی (آمریکا) - جنی (زن)': 'en-US-JennyNeural', 'انگلیسی (آمریکا) - گای (مرد)': 'en-US-GuyNeural',
|
| 28 |
'انگلیسی (آمریکا) - آنا (زن، صدای کودک)': 'en-US-AnaNeural', 'انگلیسی (آمریکا) - آریا (زن)': 'en-US-AriaNeural',
|
|
|
|
| 58 |
}
|
| 59 |
|
| 60 |
async def translate_text_gemini_async(text, target_language="English"):
|
| 61 |
+
if not model: logging.error("Gemini model not loaded."); return "خطا: سرویس ترجمه در دسترس نیست.", None
|
| 62 |
+
if not text or not text.strip(): logging.warning("Translate: Empty input text."); return "خطا: متن ورودی خالی است.", None
|
|
|
|
| 63 |
try:
|
| 64 |
prompt = f"Translate the following Persian text to {target_language}. Provide only the translated English text, naturally and fluently, without any extra phrases, explanations, or markdown formatting. Be concise and accurate.\n\nPersian: \"{text}\"\n{target_language}:"
|
| 65 |
response = await model.generate_content_async(prompt)
|
| 66 |
translated_text = response.text.strip()
|
| 67 |
if translated_text.lower().startswith(f"{target_language.lower()}:"):
|
| 68 |
translated_text = translated_text[len(target_language)+1:].strip()
|
| 69 |
+
return "ترجمه موفق", translated_text
|
| 70 |
+
except Exception as e: logging.error(f"Gemini translation error: {e}", exc_info=True); return f"خطا در ترجمه: {type(e).__name__}", None
|
| 71 |
|
| 72 |
async def text_to_speech_edge_tts_async(text_to_speak, tts_voice_key, rate, volume, pitch):
|
| 73 |
+
if not text_to_speak or not text_to_speak.strip(): logging.warning("TTS: Empty input text."); return "خطا در TTS: متن ورودی خالی است.", None
|
|
|
|
| 74 |
voice_id = language_dict_persian_keys.get(tts_voice_key)
|
| 75 |
+
if voice_id is None: logging.error(f"TTS: Voice key '{tts_voice_key}' not found."); return f"خطا در TTS: صدای '{tts_voice_key}' یافت نشد.", None
|
| 76 |
try:
|
| 77 |
rate_str, volume_str, pitch_str = f"{int(rate):+g}%", f"{int(volume):+g}%", f"{int(pitch):+g}Hz"
|
| 78 |
communicate = edge_tts.Communicate(text_to_speak, voice_id, rate=rate_str, volume=volume_str, pitch=pitch_str)
|
| 79 |
+
with tempfile.NamedTemporaryFile(delete=False, suffix=".mp3") as tmp_file:
|
| 80 |
+
tmp_path = tmp_file.name
|
| 81 |
await communicate.save(tmp_path)
|
| 82 |
+
return "TTS موفق", tmp_path
|
| 83 |
+
except Exception as e: logging.error(f"Edge-TTS error: {e}", exc_info=True); return f"خطا در TTS: {type(e).__name__}", None
|
| 84 |
|
|
|
|
| 85 |
_thread_local = threading.local()
|
| 86 |
|
| 87 |
def get_event_loop():
|
| 88 |
+
if not hasattr(_thread_local, 'loop') or _thread_local.loop.is_closed():
|
| 89 |
_thread_local.loop = asyncio.new_event_loop()
|
| 90 |
+
logging.info(f"Created or reopened new event loop for thread {threading.get_ident()}")
|
| 91 |
|
|
|
|
|
|
|
| 92 |
try:
|
| 93 |
+
current_loop = asyncio.get_event_loop_policy().get_event_loop()
|
| 94 |
+
if current_loop is not _thread_local.loop:
|
| 95 |
+
asyncio.set_event_loop(_thread_local.loop)
|
| 96 |
+
except RuntimeError:
|
| 97 |
asyncio.set_event_loop(_thread_local.loop)
|
| 98 |
+
logging.info(f"Set event loop for thread {threading.get_ident()} as no current loop was found or it was different.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
return _thread_local.loop
|
| 100 |
|
| 101 |
|
| 102 |
def translate_and_speak_sync_wrapper(persian_text, english_tts_voice_key, rate, volume, pitch):
|
| 103 |
+
logging.info(f"Wrapper called. Text: '{persian_text[:30]}...' Voice: {english_tts_voice_key}")
|
| 104 |
+
loop = get_event_loop()
|
| 105 |
+
audio_file_to_clean = None
|
| 106 |
+
status_update = gr.update(value=None, visible=False) # Default status
|
| 107 |
+
|
| 108 |
if not GOOGLE_API_KEY or not model:
|
| 109 |
+
msg = "خطا: سرویس ترجمه پیکربندی نشده است. لطفاً از تنظیم GOOGLE_API_KEY اطمینان حاصل کنید."
|
| 110 |
+
logging.error(msg)
|
| 111 |
+
status_update = gr.update(value=f"🚫 {msg}", visible=True)
|
| 112 |
+
return msg, None, status_update
|
| 113 |
if not persian_text or not persian_text.strip():
|
| 114 |
msg = "لطفاً متن فارسی را برای ترجمه وارد کنید."
|
| 115 |
+
logging.warning(msg)
|
| 116 |
+
status_update = gr.update(value=f"⚠️ {msg}", visible=True)
|
| 117 |
+
return msg, None, status_update
|
| 118 |
+
if not english_tts_voice_key or english_tts_voice_key == "لیست خالی":
|
| 119 |
+
msg = "لطفاً یک صدای گوینده انتخاب کنید."
|
| 120 |
+
logging.warning(msg)
|
| 121 |
+
status_update = gr.update(value=f"⚠️ {msg}", visible=True)
|
| 122 |
+
return persian_text, None, status_update
|
| 123 |
+
|
| 124 |
try:
|
|
|
|
| 125 |
translation_status_msg, translated_text = loop.run_until_complete(
|
| 126 |
translate_text_gemini_async(persian_text)
|
| 127 |
)
|
| 128 |
+
if "خطا" in translation_status_msg.lower() or not translated_text:
|
| 129 |
err_msg = f"ترجمه ناموفق: {translation_status_msg} {translated_text or ''}"
|
| 130 |
+
logging.error(err_msg)
|
| 131 |
+
status_update = gr.update(value=f"🚫 {err_msg}", visible=True)
|
| 132 |
+
return err_msg, None, status_update
|
| 133 |
|
|
|
|
| 134 |
tts_status_msg, audio_path = loop.run_until_complete(
|
| 135 |
text_to_speech_edge_tts_async(translated_text, english_tts_voice_key, rate, volume, pitch)
|
| 136 |
)
|
| 137 |
+
|
| 138 |
+
if "خطا" in tts_status_msg.lower() or not audio_path:
|
| 139 |
+
err_msg = f"خطای TTS: {tts_status_msg}"
|
| 140 |
+
logging.error(f"Translated: '{translated_text}', TTS Error: {err_msg}")
|
| 141 |
+
status_update = gr.update(value=f"⚠️ {err_msg}", visible=True)
|
| 142 |
+
return translated_text, None, status_update
|
| 143 |
+
|
| 144 |
+
audio_file_to_clean = audio_path
|
| 145 |
+
logging.info(f"عملیات موفق. متن ترجمه شده: '{translated_text[:30]}...', مسیر صوت: {audio_path}")
|
| 146 |
+
status_update = gr.update(value="✅ ترجمه و تولید صدا موفقیت آمیز بود!", visible=True)
|
| 147 |
+
return translated_text, audio_path, status_update
|
| 148 |
+
|
| 149 |
except Exception as e:
|
| 150 |
logging.error(f"خطای غیرمنتظره در wrapper: {e}", exc_info=True)
|
| 151 |
+
if audio_file_to_clean and os.path.exists(audio_file_to_clean):
|
| 152 |
+
try:
|
| 153 |
+
os.remove(audio_file_to_clean)
|
| 154 |
+
logging.info(f"Cleaned up temporary audio file: {audio_file_to_clean}")
|
| 155 |
+
except OSError as oe:
|
| 156 |
+
logging.error(f"Error cleaning up temp file {audio_file_to_clean}: {oe}")
|
| 157 |
+
status_update = gr.update(value=f"🚫 خطای داخلی سرور: {type(e).__name__}", visible=True)
|
| 158 |
+
return f"خطای داخلی سرور: {type(e).__name__}", None, status_update
|
| 159 |
+
|
| 160 |
+
# --- تعریف تم و CSS بسیار زیباتر ---
|
| 161 |
+
FLY_PRIMARY_COLOR_HEX = "#4F46E5" # Indigo
|
| 162 |
+
FLY_SECONDARY_COLOR_HEX = "#10B981" # Emerald
|
| 163 |
+
FLY_ACCENT_COLOR_HEX = "#F59E0B" # Amber
|
| 164 |
+
FLY_TEXT_COLOR_HEX = "#111827" # Gray 900
|
| 165 |
+
FLY_SUBTLE_TEXT_HEX = "#6B7280" # Gray 500
|
| 166 |
+
FLY_LIGHT_BACKGROUND_HEX = "#F9FAFB" # Gray 50
|
| 167 |
FLY_WHITE_HEX = "#FFFFFF"
|
| 168 |
+
FLY_BORDER_COLOR_HEX = "#D1D5DB" # Gray 300
|
| 169 |
+
FLY_INPUT_BG_HEX = "#FFFFFF"
|
| 170 |
+
FLY_PANEL_BG_HEX = "#E0E7FF" # Indigo 100
|
| 171 |
+
|
| 172 |
+
app_theme = gr.themes.Base(
|
| 173 |
+
font=[gr.themes.GoogleFont("Inter"), "system-ui", "sans-serif"],
|
|
|
|
|
|
|
|
|
|
| 174 |
).set(
|
| 175 |
body_background_fill=FLY_LIGHT_BACKGROUND_HEX,
|
| 176 |
)
|
| 177 |
|
|
|
|
|
|
|
| 178 |
custom_css = f"""
|
| 179 |
+
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&display=swap');
|
| 180 |
+
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
|
| 181 |
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
|
| 182 |
+
|
| 183 |
:root {{
|
| 184 |
+
--fly-primary: {FLY_PRIMARY_COLOR_HEX};
|
| 185 |
+
--fly-secondary: {FLY_SECONDARY_COLOR_HEX};
|
| 186 |
+
--fly-accent: {FLY_ACCENT_COLOR_HEX};
|
| 187 |
+
--fly-text-primary: {FLY_TEXT_COLOR_HEX};
|
| 188 |
+
--fly-text-secondary: {FLY_SUBTLE_TEXT_HEX};
|
| 189 |
+
--fly-bg-light: {FLY_LIGHT_BACKGROUND_HEX};
|
| 190 |
+
--fly-bg-white: {FLY_WHITE_HEX};
|
| 191 |
+
--fly-border-color: {FLY_BORDER_COLOR_HEX};
|
| 192 |
+
--fly-input-bg: {FLY_INPUT_BG_HEX};
|
| 193 |
+
--fly-panel-bg: {FLY_PANEL_BG_HEX};
|
| 194 |
+
|
| 195 |
+
--font-global: 'Vazirmatn', 'Inter', 'Poppins', system-ui, sans-serif;
|
| 196 |
+
--font-english: 'Poppins', 'Inter', system-ui, sans-serif;
|
| 197 |
+
|
| 198 |
+
--radius-sm: 0.375rem; --radius-md: 0.5rem; --radius-lg: 0.75rem; --radius-xl: 1rem; --radius-full: 9999px;
|
| 199 |
+
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
| 200 |
+
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
| 201 |
+
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
|
| 202 |
+
--shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
|
| 203 |
+
--transition-fast: all 0.15s ease-in-out;
|
| 204 |
+
--transition-normal: all 0.25s ease-in-out;
|
| 205 |
+
--fly-primary-rgb: 79, 70, 229; /* For Indigo #4F46E5 */
|
| 206 |
+
--fly-accent-rgb: 245, 158, 11; /* For Amber #F59E0B */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 207 |
}}
|
| 208 |
+
|
| 209 |
+
body {{font-family: var(--font-global); direction: rtl; background-color: var(--fly-bg-light); color: var(--fly-text-primary); line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-size: 16px;}}
|
| 210 |
+
.gradio-container {{max-width: 100% !important; width: 100% !important; min-height: 100vh; margin: 0 auto !important; padding: 0 !important; border-radius: 0 !important; box-shadow: none !important; background: linear-gradient(170deg, #E0F2FE 0%, #F3E8FF 100%); display: flex; flex-direction: column;}}
|
| 211 |
+
|
| 212 |
+
.app-title-card {{text-align: center; padding: 2.5rem 1rem; margin: 0; background: linear-gradient(135deg, var(--fly-primary) 0%, var(--fly-secondary) 100%); color: var(--fly-bg-white); border-bottom-left-radius: var(--radius-xl); border-bottom-right-radius: var(--radius-xl); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;}}
|
| 213 |
+
.app-title-card::before {{content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; background: rgba(255,255,255,0.1); border-radius: var(--radius-full); opacity: 0.5; transform: rotate(45deg);}}
|
| 214 |
+
.app-title-card h1 {{font-size: 2.25em !important; font-weight: 800 !important; margin: 0 0 0.5rem 0; font-family: var(--font-english); letter-spacing: -0.5px; text-shadow: 0 2px 4px rgba(0,0,0,0.1);}}
|
| 215 |
+
.app-title-card p {{font-size: 1em !important; margin-top: 0.25rem; font-weight: 400; color: rgba(255, 255, 255, 0.85) !important;}}
|
| 216 |
+
|
| 217 |
+
.main-content-area-fly {{
|
| 218 |
+
flex-grow: 1;
|
| 219 |
+
padding: 0.75rem; /* Smaller padding for mobile */
|
| 220 |
+
width: 100%;
|
| 221 |
+
margin: 0 auto;
|
| 222 |
+
box-sizing: border-box; /* Ensure padding is included in width */
|
| 223 |
}}
|
| 224 |
+
.content-panel {{
|
| 225 |
+
background-color: var(--fly-bg-white);
|
| 226 |
+
padding: 1rem; /* Smaller padding for mobile */
|
| 227 |
+
border-radius: var(--radius-xl);
|
| 228 |
+
box-shadow: var(--shadow-xl);
|
| 229 |
+
margin-top: -2rem;
|
| 230 |
+
position: relative;
|
| 231 |
+
z-index: 10;
|
| 232 |
+
margin-bottom: 2rem;
|
| 233 |
+
width: 100%; /* Ensure panel takes full width of its parent */
|
| 234 |
+
box-sizing: border-box; /* Ensure padding is included in width */
|
| 235 |
}}
|
| 236 |
+
|
| 237 |
+
.gr-input > label > span.label-text, .gr-dropdown > label > span.label-text, .gr-slider > label > span.label-text {{font-weight: 600 !important; color: var(--fly-text-primary) !important; font-size: 0.9em !important; margin-bottom: 0.5rem !important; display: block;}}
|
| 238 |
+
.gr-input > label + div > textarea, .gr-dropdown > label + div > div > input, .gr-dropdown > label + div > div > select {{border-radius: var(--radius-md) !important; border: 1px solid var(--fly-border-color) !important; font-size: 1em !important; background-color: var(--fly-input-bg) !important; padding: 0.75rem 1rem !important; line-height: 1.6; width: 100% !important; box-sizing: border-box !important; font-family: var(--font-global) !important; color: var(--fly-text-primary) !important; transition: var(--transition-normal); box-shadow: var(--shadow-sm);}}
|
| 239 |
+
.gr-input > label + div > textarea:focus, .gr-dropdown > label + div > div > input:focus, .gr-dropdown > label + div > div > select:focus {{border-color: var(--fly-primary) !important; box-shadow: 0 0 0 3px rgba(var(--fly-primary-rgb), 0.3) !important; outline: none; transform: translateY(-1px);}}
|
| 240 |
+
.gr-dropdown svg.icon {{right: auto !important; left: 1rem !important; color: var(--fly-subtle-text) !important;}}
|
| 241 |
+
|
| 242 |
+
.output-text-container .gr-textbox[label*="ترجمه انگلیسی"] > label + div > textarea, .output-text-container .gradio-interface .output_text .gr-textbox[data-testid="textbox"] > label + div > textarea {{background-color: var(--fly-panel-bg) !important; border: 1px solid var(--fly-primary) !important; border-radius: var(--radius-md) !important; min-height: 120px; font-family: var(--font-english) !important; font-size: 1.05em !important; color: var(--fly-primary) !important; font-weight: 500; padding: 0.75rem 1rem !important; box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);}}
|
| 243 |
+
.output-audio-container .gr-audio {{border-radius: var(--radius-md); box-shadow: var(--shadow-sm);}}
|
| 244 |
+
.output-audio-container .gr-audio audio {{border-radius: var(--radius-md);}}
|
| 245 |
+
|
| 246 |
+
.gr-accordion > button.gr-button {{font-weight: 600 !important; padding: 0.75rem 1rem !important; border-radius: var(--radius-md) !important; background-color: #EDF2F7 !important; color: var(--fly-text-primary) !important; border: 1px solid var(--fly-border-color) !important; font-size: 0.95em; margin-bottom: 0.5rem; transition: var(--transition-normal); text-align: right;}}
|
| 247 |
+
.gr-accordion > button.gr-button:hover {{background-color: #E2E8F0 !important; border-color: var(--fly-primary) !important; color: var(--fly-primary) !important;}}
|
| 248 |
+
.gr-accordion > div.gr-panel {{border-radius: var(--radius-md) !important; border: 1px solid var(--fly-border-color) !important; background-color: var(--fly-bg-white) !important; padding: 1.25rem !important; box-shadow: none; margin-top: -0.5rem; position: relative; z-index: 5;}}
|
| 249 |
+
.gr-slider {{padding: 0.5rem 0 !important;}}
|
| 250 |
+
.gr-slider input[type="range"]::-webkit-slider-thumb {{background: var(--fly-primary) !important; box-shadow: var(--shadow-sm) !important;}}
|
| 251 |
+
.gr-slider input[type="range"]::-moz-range-thumb {{background: var(--fly-primary) !important; box-shadow: var(--shadow-sm) !important;}}
|
| 252 |
+
|
| 253 |
+
.action-button-container .gr-button.gr-button-primary {{width: 100% !important; padding: 0.85rem 1.5rem !important; font-size: 1.05em !important; font-weight: 700 !important; border-radius: var(--radius-md) !important; margin-top: 1.5rem !important; letter-spacing: 0.5px; color: var(--fly-bg-white) !important; background: linear-gradient(135deg, var(--fly-accent) 0%, #F97316 100%) !important; border: none !important; box-shadow: var(--shadow-md), 0 0 15px rgba(var(--fly-accent-rgb), 0.3); transition: var(--transition-normal), transform 0.1s ease-out; cursor: pointer;}}
|
| 254 |
+
.action-button-container .gr-button.gr-button-primary:hover {{transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-lg), 0 0 25px rgba(var(--fly-accent-rgb), 0.4);}}
|
| 255 |
+
.action-button-container .gr-button.gr-button-primary:active {{transform: translateY(-1px) scale(0.98); box-shadow: var(--shadow-sm), 0 0 10px rgba(var(--fly-accent-rgb), 0.2);}}
|
| 256 |
+
|
| 257 |
+
div#examples_section {{margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--fly-border-color);}}
|
| 258 |
+
div#examples_section > .gr-panel {{background-color: transparent !important; border: none !important; padding: 0 !important; box-shadow: none !important;}}
|
| 259 |
+
div#examples_section .gr-samples-header {{font-weight: 700; color: var(--fly-text-primary); font-size: 1.1em; margin-bottom: 1rem; text-align: right;}}
|
| 260 |
+
div#examples_section .gr-sample-button, div#examples_section table tbody tr td button.gr-button-secondary {{background-color: var(--fly-input-bg) !important; color: var(--fly-primary) !important; border-radius: var(--radius-md) !important; font-size: 0.9em !important; padding: 0.5rem 1rem !important; border: 1px solid var(--fly-primary) !important; transition: var(--transition-normal); box-shadow: var(--shadow-sm); font-weight: 500;}}
|
| 261 |
+
div#examples_section .gr-sample-button:hover, div#examples_section table tbody tr td button.gr-button-secondary:hover {{background-color: var(--fly-primary) !important; color: var(--fly-bg-white) !important; transform: translateY(-2px); box-shadow: var(--shadow-md);}}
|
| 262 |
+
|
| 263 |
+
.status-message-fly {{padding: 0.75rem 1rem; margin-top: 1.5rem; border-radius: var(--radius-md); font-weight: 500; text-align: center; font-size: 0.95em; box-shadow: var(--shadow-sm);}}
|
| 264 |
+
.status-message-fly.success {{background-color: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0;}}
|
| 265 |
+
.status-message-fly.error {{background-color: #FEE2E2; color: #991B1B; border: 1px solid #FECACA;}}
|
| 266 |
+
|
| 267 |
+
.custom-hr-fly {{height: 1px; background-color: var(--fly-border-color); margin: 2rem 0; border: none;}}
|
| 268 |
+
.api-warning-message-fly {{background-color: #FEF3C7 !important; color: #92400E !important; padding: 0.75rem 1rem !important; border-radius: var(--radius-md) !important; border: 1px solid #FDE68A !important; text-align: center !important; margin: 0 0.5rem 1.5rem 0.5rem !important; font-size: 0.9em !important; font-weight: 500; box-shadow: var(--shadow-sm);}}
|
| 269 |
+
.app-footer-fly {{text-align:center; font-size:0.85em; color: var(--fly-text-secondary); margin-top:2.5rem; padding: 1rem 0; background-color: rgba(255,255,255,0.3); backdrop-filter: blur(5px); border-top: 1px solid var(--fly-border-color);}}
|
| 270 |
footer, .gradio-footer {{display: none !important;}}
|
| 271 |
|
| 272 |
+
/* Tablet and wider mobile */
|
| 273 |
+
@media (min-width: 640px) {
|
| 274 |
+
.main-content-area-fly {
|
| 275 |
+
padding: 1.5rem; /* Restore larger padding */
|
| 276 |
+
max-width: 900px; /* Apply max-width */
|
| 277 |
+
}
|
| 278 |
+
.content-panel {
|
| 279 |
+
padding: 1.5rem; /* Restore larger padding */
|
| 280 |
+
}
|
| 281 |
+
}
|
| 282 |
+
|
| 283 |
+
/* Desktop */
|
| 284 |
+
@media (min-width: 768px) {
|
| 285 |
+
.main-content-columns-fly {{display: flex; flex-direction: row; gap: 2rem; align-items: flex-start;}}
|
| 286 |
+
.main-content-columns-fly > .gr-column:nth-child(1) {{flex: 3;}}
|
| 287 |
+
.main-content-columns-fly > .gr-column:nth-child(2) {{flex: 2; position: sticky; top: 1.5rem;}}
|
| 288 |
+
.action-button-container .gr-button.gr-button-primary {{width: auto !important; min-width: 220px; align-self: flex-end;}}
|
| 289 |
+
.app-title-card h1 {{font-size: 2.75em !important;}}
|
| 290 |
+
.app-title-card p {{font-size: 1.1em !important;}}
|
| 291 |
+
.content-panel {{ padding: 2rem; }}
|
| 292 |
+
}
|
| 293 |
"""
|
| 294 |
|
| 295 |
default_english_tts_voice = 'انگلیسی (آمریکا) - جنی (زن)'
|
| 296 |
+
if not language_dict_persian_keys :
|
| 297 |
+
logging.warning("Language dictionary is empty!")
|
| 298 |
+
default_english_tts_voice = None
|
| 299 |
+
elif default_english_tts_voice not in language_dict_persian_keys:
|
| 300 |
default_english_tts_voice = list(language_dict_persian_keys.keys())[0] if language_dict_persian_keys else None
|
| 301 |
|
| 302 |
+
logging.info(f"Gradio version: {gr.__version__}")
|
| 303 |
+
|
| 304 |
+
with gr.Blocks(theme=app_theme, css=custom_css, title="آموزش زبان فلای | Fly Language Learning") as demo:
|
| 305 |
+
gr.HTML(f"""
|
| 306 |
+
<div class="app-title-card">
|
| 307 |
+
<h1>🚀 Fly Language Learning</h1>
|
| 308 |
+
<p>جادوی ترجمه و تلفظ در دستان شما</p>
|
| 309 |
+
</div>
|
| 310 |
+
""")
|
| 311 |
|
| 312 |
with gr.Column(elem_classes=["main-content-area-fly"]):
|
| 313 |
if not GOOGLE_API_KEY or not model:
|
| 314 |
+
missing_key_msg = "⚠️ **هشدار سرویس ترجمه:** "
|
| 315 |
+
if not GOOGLE_API_KEY: missing_key_msg += "کلید API گوگل (GOOGLE_API_KEY) تنظیم نشده است."
|
| 316 |
+
elif not model: missing_key_msg += "خطا در بارگذاری مدل Gemini."
|
| 317 |
+
gr.Markdown(f"<div class='api-warning-message-fly'>{missing_key_msg} بخش ترجمه غیرفعال خواهد بود. لطفاً تنظیمات Secrets را بررسی کنید.</div>")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 318 |
|
| 319 |
+
with gr.Group(elem_classes=["content-panel"]):
|
| 320 |
+
with gr.Row(elem_classes=["main-content-columns-fly"]):
|
| 321 |
+
with gr.Column(scale=3, elem_id="input_column"):
|
| 322 |
+
input_text_persian = gr.Textbox(
|
| 323 |
+
lines=5, label="📝 متن فارسی خود را بنویسید:",
|
| 324 |
+
placeholder="مثال: جهان شگفتانگیز زبانها را کاوش کنید...",
|
| 325 |
+
elem_id="persian_input_textbox"
|
| 326 |
+
)
|
| 327 |
+
language_dropdown_tts_english = gr.Dropdown(
|
| 328 |
+
choices=list(language_dict_persian_keys.keys()) if language_dict_persian_keys else ["لیست خالی"],
|
| 329 |
+
value=default_english_tts_voice if default_english_tts_voice else "لیست خالی",
|
| 330 |
+
label="🗣️ گوینده و لهجه انگلیسی:",
|
| 331 |
+
interactive=bool(language_dict_persian_keys and default_english_tts_voice is not None)
|
| 332 |
+
)
|
| 333 |
+
with gr.Accordion("🎧 تنظیمات پیشرفته صدا", open=False):
|
| 334 |
+
rate_slider = gr.Slider(minimum=-100, maximum=100, value=0, step=10, label="سرعت گفتار")
|
| 335 |
+
volume_slider = gr.Slider(minimum=-100, maximum=100, value=0, step=10, label="بلندی صدا")
|
| 336 |
+
pitch_slider = gr.Slider(minimum=-50, maximum=50, value=0, step=5, label="زیر و بمی صدا")
|
| 337 |
+
|
| 338 |
+
with gr.Column(elem_classes=["action-button-container"]):
|
| 339 |
+
submit_button = gr.Button("✨ ترجمه و پخش جادویی ✨", variant="primary")
|
| 340 |
|
| 341 |
+
with gr.Column(scale=2, elem_id="output_column", elem_classes=["result-area-fly"]):
|
| 342 |
+
with gr.Group(elem_classes=["output-text-container"]):
|
| 343 |
+
output_text_translated = gr.Textbox(
|
| 344 |
+
label="📜 ترجمه انگلیسی روان:", interactive=False, lines=6,
|
| 345 |
+
placeholder="ترجمه در اینجا پدیدار خواهد شد...",
|
| 346 |
+
elem_id="english_output_textbox"
|
| 347 |
+
)
|
| 348 |
+
with gr.Group(elem_classes=["output-audio-container"]):
|
| 349 |
+
output_audio = gr.Audio(label="🎤 بشنوید:", type="filepath", format="mp3", interactive=False)
|
| 350 |
+
|
| 351 |
+
status_message = gr.Markdown(visible=False, elem_classes=["status-message-fly"])
|
| 352 |
+
|
| 353 |
+
|
| 354 |
+
if language_dict_persian_keys and default_english_tts_voice:
|
| 355 |
+
gr.HTML("<hr class='custom-hr-fly'>")
|
| 356 |
+
num_voices = len(language_dict_persian_keys)
|
| 357 |
+
voice_keys = list(language_dict_persian_keys.keys())
|
| 358 |
+
|
| 359 |
+
valid_example_list = []
|
| 360 |
+
if num_voices > 0:
|
| 361 |
+
voice1_idx, voice2_idx, voice3_idx, voice4_idx = 0, min(7, num_voices - 1), min(13, num_voices - 1), min(3, num_voices - 1)
|
| 362 |
+
example_list_data = [
|
| 363 |
+
["قیمت این لباس چقدر است؟", voice_keys[voice1_idx], 0, 0, 0],
|
| 364 |
+
["میتوانید آدرس را روی نقشه به من نشان دهید؟", voice_keys[voice2_idx], 5, 0, 0],
|
| 365 |
+
["ببخشید، متوجه نشدم. امکان دارد تکرار کنید؟", voice_keys[voice3_idx], -10, 10, 0],
|
| 366 |
+
["یک قهوه و یک کیک لطفا.", voice_keys[voice4_idx], 0, 0, 0],
|
| 367 |
+
]
|
| 368 |
+
valid_example_list = example_list_data
|
| 369 |
+
else: logging.warning("No voices available for examples.")
|
| 370 |
+
|
| 371 |
+
if valid_example_list:
|
| 372 |
+
gr.Examples(
|
| 373 |
+
examples=valid_example_list,
|
| 374 |
+
inputs=[input_text_persian, language_dropdown_tts_english, rate_slider, volume_slider, pitch_slider],
|
| 375 |
+
outputs=[output_text_translated, output_audio, status_message],
|
| 376 |
+
fn=translate_and_speak_sync_wrapper,
|
| 377 |
+
label="🌟 نمونههای الهامبخش (برای امتحان کلیک کنید):",
|
| 378 |
+
elem_id="examples_section"
|
| 379 |
+
)
|
| 380 |
|
| 381 |
+
gr.Markdown("<p class='app-footer-fly'>ساخته شده با ❤️ و ☕ توسط تیم فلای | Fly Language Learning © ۲۰۲۴</p>")
|
| 382 |
+
|
| 383 |
+
if 'submit_button' in locals() and submit_button is not None:
|
| 384 |
+
def handle_submit_click_ui_update(persian_text, english_tts_voice_key, rate, volume, pitch):
|
| 385 |
+
translated_text, audio_path, status_update_dict = translate_and_speak_sync_wrapper(
|
| 386 |
+
persian_text, english_tts_voice_key, rate, volume, pitch
|
| 387 |
)
|
| 388 |
+
|
| 389 |
+
current_value = None
|
| 390 |
+
is_visible = False
|
| 391 |
+
status_class_list = ["status-message-fly"]
|
| 392 |
|
| 393 |
+
if status_update_dict and isinstance(status_update_dict, dict):
|
| 394 |
+
current_value = status_update_dict.get("value")
|
| 395 |
+
is_visible = status_update_dict.get("visible", False)
|
| 396 |
+
|
| 397 |
+
if current_value:
|
| 398 |
+
if "موفقیت" in current_value or "✅" in current_value:
|
| 399 |
+
status_class_list.append("success")
|
| 400 |
+
elif "خطا" in current_value or "⚠️" in current_value or "🚫" in current_value:
|
| 401 |
+
status_class_list.append("error")
|
| 402 |
+
|
| 403 |
+
updated_status_message_ui = gr.update(value=current_value,
|
| 404 |
+
visible=is_visible,
|
| 405 |
+
elem_classes=status_class_list)
|
| 406 |
+
|
| 407 |
+
return translated_text, audio_path, updated_status_message_ui
|
| 408 |
+
|
| 409 |
+
submit_button.click(
|
| 410 |
+
fn=handle_submit_click_ui_update,
|
| 411 |
+
inputs=[input_text_persian, language_dropdown_tts_english, rate_slider, volume_slider, pitch_slider],
|
| 412 |
+
outputs=[output_text_translated, output_audio, status_message]
|
| 413 |
+
)
|
| 414 |
+
else:
|
| 415 |
+
logging.error("Submit button was not initialized correctly or is None.")
|
| 416 |
|
| 417 |
if __name__ == "__main__":
|
| 418 |
+
if not language_dict_persian_keys:
|
| 419 |
+
logging.critical("CRITICAL: Voice dictionary (language_dict_persian_keys) is empty!")
|
| 420 |
+
elif not default_english_tts_voice:
|
| 421 |
+
logging.warning("WARNING: No default English TTS voice could be set.")
|
| 422 |
+
|
| 423 |
+
demo.launch(server_name="0.0.0.0", server_port=7860, debug=True, show_error=True)
|