shukdevdatta123 commited on
Commit
e5e7630
·
verified ·
1 Parent(s): 2878212

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -3
app.py CHANGED
@@ -5,6 +5,7 @@ from PIL import Image
5
  from gtts import gTTS
6
  import tempfile
7
  import shutil
 
8
 
9
  def translate_to_japanese(api_key, text):
10
  """
@@ -53,6 +54,7 @@ def translate_to_japanese(api_key, text):
53
 
54
  # Extract the pronunciation (Romaji) from the response
55
  pronunciation = response_pronunciation.choices[0].message['content'].strip()
 
56
  return japanese_translation, pronunciation
57
 
58
  except openai.error.OpenAIError as e:
@@ -60,6 +62,12 @@ def translate_to_japanese(api_key, text):
60
  except Exception as e:
61
  return f"An unexpected error occurred: {str(e)}", None
62
 
 
 
 
 
 
 
63
  # Function to generate audio file from text using gTTS
64
  def generate_audio_from_text(text):
65
  tts = gTTS(text, lang='ja') # 'ja' for Japanese language
@@ -86,13 +94,16 @@ if st.button("Translate"):
86
  if api_key and english_text:
87
  japanese_text, pronunciation = translate_to_japanese(api_key, english_text)
88
  if pronunciation:
 
 
 
89
  st.markdown("### Translation Result:")
90
  st.write(f"**English Text:** {english_text}")
91
  st.write(f"**Japanese Output:** {japanese_text}")
92
- st.write(f"**Pronunciation:** {pronunciation}")
93
 
94
  # Save the result in a text file
95
- result_text = f"English Text: {english_text}\n\nJapanese Translation: {japanese_text}\nPronunciation: {pronunciation}"
96
 
97
  # Write to a text file
98
  with open("translation_result.txt", "w") as file:
@@ -108,7 +119,7 @@ if st.button("Translate"):
108
  )
109
 
110
  # Generate audio for pronunciation
111
- audio_file_path = generate_audio_from_text(pronunciation)
112
 
113
  # Provide a button to play the pronunciation audio
114
  st.audio(audio_file_path, format="audio/mp3")
 
5
  from gtts import gTTS
6
  import tempfile
7
  import shutil
8
+ import re
9
 
10
  def translate_to_japanese(api_key, text):
11
  """
 
54
 
55
  # Extract the pronunciation (Romaji) from the response
56
  pronunciation = response_pronunciation.choices[0].message['content'].strip()
57
+
58
  return japanese_translation, pronunciation
59
 
60
  except openai.error.OpenAIError as e:
 
62
  except Exception as e:
63
  return f"An unexpected error occurred: {str(e)}", None
64
 
65
+ # Function to clean pronunciation text
66
+ def clean_pronunciation(pronunciation_text):
67
+ # Remove introductory phrases like "Sure! The Romaji pronunciation..."
68
+ pronunciation_cleaned = re.sub(r"^Sure! The Romaji pronunciation for the Japanese text.*?is[:]*", "", pronunciation_text).strip()
69
+ return pronunciation_cleaned
70
+
71
  # Function to generate audio file from text using gTTS
72
  def generate_audio_from_text(text):
73
  tts = gTTS(text, lang='ja') # 'ja' for Japanese language
 
94
  if api_key and english_text:
95
  japanese_text, pronunciation = translate_to_japanese(api_key, english_text)
96
  if pronunciation:
97
+ # Clean pronunciation (remove unnecessary parts)
98
+ cleaned_pronunciation = clean_pronunciation(pronunciation)
99
+
100
  st.markdown("### Translation Result:")
101
  st.write(f"**English Text:** {english_text}")
102
  st.write(f"**Japanese Output:** {japanese_text}")
103
+ st.write(f"**Pronunciation:** {cleaned_pronunciation}")
104
 
105
  # Save the result in a text file
106
+ result_text = f"English Text: {english_text}\n\nJapanese Translation: {japanese_text}\nPronunciation: {cleaned_pronunciation}"
107
 
108
  # Write to a text file
109
  with open("translation_result.txt", "w") as file:
 
119
  )
120
 
121
  # Generate audio for pronunciation
122
+ audio_file_path = generate_audio_from_text(cleaned_pronunciation)
123
 
124
  # Provide a button to play the pronunciation audio
125
  st.audio(audio_file_path, format="audio/mp3")