younes21000 commited on
Commit
1bce94f
·
verified ·
1 Parent(s): e3f4dd1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +44 -36
app.py CHANGED
@@ -39,9 +39,9 @@ def add_subtitle(video):
39
  video_path = video if isinstance(video, str) else None
40
  if not video_path:
41
  return "No video provided!"
42
-
43
- video = mp.VideoFileClip(video_path)
44
- audio = video.audio
45
 
46
  # Use a temporary file for audio extraction
47
  with tempfile.NamedTemporaryFile(delete=True, suffix='.wav') as tmp_audio_file:
@@ -51,7 +51,11 @@ def add_subtitle(video):
51
  # Transcribe in chunks (parallel)
52
  chunk_duration = 15 # seconds
53
  chunk_size = sr * chunk_duration
54
- chunks = [waveform[i:i + chunk_size] for i in range(0, len(waveform), chunk_size) if len(waveform[i:i + chunk_size]) > 0]
 
 
 
 
55
 
56
  with ThreadPoolExecutor() as executor:
57
  transcriptions = list(executor.map(transcribe_audio, chunks))
@@ -59,7 +63,7 @@ def add_subtitle(video):
59
  full_transcription = " ".join(transcriptions)
60
  subtitle_storage["original"] = full_transcription # Store the original subtitle
61
  subtitle_storage["video_path"] = video_path # Store the video path
62
-
63
  return f"Subtitle added: {full_transcription[:100]}..." # Display first 100 characters
64
 
65
  except Exception as e:
@@ -71,18 +75,18 @@ def translate_subtitle(video, language):
71
  original_subtitle = subtitle_storage.get("original")
72
  if not original_subtitle:
73
  return "No subtitle to translate!"
74
-
75
  # Translate using the selected language
76
  translated_subtitle = translator(
77
- original_subtitle,
78
  src_lang="en", # Source language (assuming the subtitle is in English)
79
  tgt_lang=languages[language] # Get the language code from the dropdown selection
80
  )[0]["translation_text"]
81
 
82
  subtitle_storage["translated"] = translated_subtitle # Store the translated subtitle
83
-
84
  return f"Subtitle translated to {language} successfully!"
85
-
86
  except Exception as e:
87
  return f"Error in translating subtitle: {e}"
88
 
@@ -92,25 +96,26 @@ def download_word():
92
  translated_subtitle = subtitle_storage.get("translated")
93
  if not translated_subtitle:
94
  return "No translated subtitle to save!"
95
-
96
  # Prepare the document
97
  doc = docx.Document()
98
  doc.add_heading('Translated Subtitles', 0)
99
-
100
  # Create timestamps and subtitles
101
- for i in range(0, len(translated_subtitle), 50):
102
- start_time = (i // 50) * 5 # Each subtitle lasts for 5 seconds
103
- subtitle_text = translated_subtitle[i:i + 50] # Get the next 50 characters
104
-
105
  # Add a formatted string with timestamp and subtitle to the document
106
- doc.add_paragraph(f"{start_time}s - {subtitle_text}")
107
-
 
108
  file_path = "translated_subtitles.docx"
109
  doc.save(file_path)
110
 
111
  # Return the file for download
112
- return file_path # Return the file path to allow Gradio to serve it as a downloadable file
113
-
114
  except Exception as e:
115
  return f"Error in saving subtitles as Word: {e}"
116
 
@@ -132,12 +137,15 @@ def download_video():
132
  # Generate subtitles (each subtitle will last for 2.5 seconds with millisecond precision)
133
  subs = []
134
  subtitle_length = 2.5 # seconds each subtitle will be displayed
135
- for i in range(0, len(translated_subtitle), 40): # Reduce chunk size to improve reliability
136
- start_time = (i // 40) * subtitle_length # Get start time with more precision
137
- subtitle_text = translated_subtitle[i:i + 40] # Get the next 40 characters
138
- subs.append((start_time, subtitle_text)) # Create a tuple for start time and text
 
 
 
139
 
140
- # Debugging log
141
  print("Generated subtitles:", subs)
142
 
143
  # Create subtitle clips
@@ -150,8 +158,8 @@ def download_video():
150
  subtitled_video.write_videofile(output_video_path, codec='libx264') # Use libx264 for better compatibility
151
 
152
  # Return the file path for download
153
- return output_video_path
154
-
155
  except Exception as e:
156
  return f"Error in generating subtitled video: {e}"
157
 
@@ -159,42 +167,42 @@ def download_video():
159
  with gr.Blocks() as demo:
160
  # Title
161
  gr.Markdown("<h1 style='text-align: center;'>Video Subtitle Translator</h1>")
162
-
163
  # Video Upload
164
  with gr.Row():
165
  video_input = gr.Video(label="Upload Video")
166
  upload_button = gr.Button("Upload Video")
167
  upload_status = gr.Textbox(label="Upload Status")
168
-
169
  upload_button.click(add_subtitle, inputs=video_input, outputs=upload_status)
170
-
171
  # Add Subtitle
172
  with gr.Row():
173
  add_subtitle_button = gr.Button("Add Subtitle")
174
  subtitle_status = gr.Textbox(label="Subtitle Status")
175
-
176
  add_subtitle_button.click(add_subtitle, inputs=video_input, outputs=subtitle_status)
177
-
178
  # Translate Subtitle
179
  with gr.Row():
180
  language_dropdown = gr.Dropdown(choices=list(languages.keys()), label="Choose Target Language", value="Persian")
181
  translate_button = gr.Button("Translate Subtitle")
182
  translate_status = gr.Textbox(label="Translation Status")
183
-
184
  translate_button.click(translate_subtitle, inputs=[video_input, language_dropdown], outputs=translate_status)
185
-
186
  # Download as Word
187
  with gr.Row():
188
  download_button = gr.Button("Download as Word")
189
  download_status = gr.File(label="Download Translated Word File") # File output for Word download
190
-
191
  download_button.click(download_word, inputs=None, outputs=download_status)
192
-
193
  # Download Subtitled Video
194
  with gr.Row():
195
  download_video_button = gr.Button("Download Subtitled Video")
196
  download_video_status = gr.File(label="Download Subtitled Video") # File output for Video download
197
-
198
  download_video_button.click(download_video, inputs=None, outputs=download_video_status)
199
 
200
  # Launch the Gradio app
 
39
  video_path = video if isinstance(video, str) else None
40
  if not video_path:
41
  return "No video provided!"
42
+
43
+ video_clip = mp.VideoFileClip(video_path)
44
+ audio = video_clip.audio
45
 
46
  # Use a temporary file for audio extraction
47
  with tempfile.NamedTemporaryFile(delete=True, suffix='.wav') as tmp_audio_file:
 
51
  # Transcribe in chunks (parallel)
52
  chunk_duration = 15 # seconds
53
  chunk_size = sr * chunk_duration
54
+ chunks = [
55
+ waveform[i:i + chunk_size]
56
+ for i in range(0, len(waveform), chunk_size)
57
+ if len(waveform[i:i + chunk_size]) > 0
58
+ ]
59
 
60
  with ThreadPoolExecutor() as executor:
61
  transcriptions = list(executor.map(transcribe_audio, chunks))
 
63
  full_transcription = " ".join(transcriptions)
64
  subtitle_storage["original"] = full_transcription # Store the original subtitle
65
  subtitle_storage["video_path"] = video_path # Store the video path
66
+
67
  return f"Subtitle added: {full_transcription[:100]}..." # Display first 100 characters
68
 
69
  except Exception as e:
 
75
  original_subtitle = subtitle_storage.get("original")
76
  if not original_subtitle:
77
  return "No subtitle to translate!"
78
+
79
  # Translate using the selected language
80
  translated_subtitle = translator(
81
+ original_subtitle,
82
  src_lang="en", # Source language (assuming the subtitle is in English)
83
  tgt_lang=languages[language] # Get the language code from the dropdown selection
84
  )[0]["translation_text"]
85
 
86
  subtitle_storage["translated"] = translated_subtitle # Store the translated subtitle
87
+
88
  return f"Subtitle translated to {language} successfully!"
89
+
90
  except Exception as e:
91
  return f"Error in translating subtitle: {e}"
92
 
 
96
  translated_subtitle = subtitle_storage.get("translated")
97
  if not translated_subtitle:
98
  return "No translated subtitle to save!"
99
+
100
  # Prepare the document
101
  doc = docx.Document()
102
  doc.add_heading('Translated Subtitles', 0)
103
+
104
  # Create timestamps and subtitles
105
+ for i in range(0, len(translated_subtitle), 40): # Adjusted chunk size
106
+ start_time = (i // 40) * 2.5 # Each subtitle lasts for 2.5 seconds
107
+ subtitle_text = translated_subtitle[i:i + 40].strip() # Get the next 40 characters
108
+
109
  # Add a formatted string with timestamp and subtitle to the document
110
+ if subtitle_text:
111
+ doc.add_paragraph(f"{start_time:.3f}s - {subtitle_text}")
112
+
113
  file_path = "translated_subtitles.docx"
114
  doc.save(file_path)
115
 
116
  # Return the file for download
117
+ return file_path # Gradio will handle this as a downloadable file
118
+
119
  except Exception as e:
120
  return f"Error in saving subtitles as Word: {e}"
121
 
 
137
  # Generate subtitles (each subtitle will last for 2.5 seconds with millisecond precision)
138
  subs = []
139
  subtitle_length = 2.5 # seconds each subtitle will be displayed
140
+ for i in range(0, len(translated_subtitle), 40): # Reduced chunk size for better handling
141
+ start_time = (i // 40) * subtitle_length
142
+ end_time = start_time + subtitle_length
143
+ subtitle_text = translated_subtitle[i:i + 40].strip() # Get the next 40 characters
144
+
145
+ if subtitle_text:
146
+ subs.append((start_time, end_time, subtitle_text)) # Create a tuple for start time, end time, and text
147
 
148
+ # Debugging: Print the generated subtitles
149
  print("Generated subtitles:", subs)
150
 
151
  # Create subtitle clips
 
158
  subtitled_video.write_videofile(output_video_path, codec='libx264') # Use libx264 for better compatibility
159
 
160
  # Return the file path for download
161
+ return output_video_path # Gradio will handle this as a downloadable file
162
+
163
  except Exception as e:
164
  return f"Error in generating subtitled video: {e}"
165
 
 
167
  with gr.Blocks() as demo:
168
  # Title
169
  gr.Markdown("<h1 style='text-align: center;'>Video Subtitle Translator</h1>")
170
+
171
  # Video Upload
172
  with gr.Row():
173
  video_input = gr.Video(label="Upload Video")
174
  upload_button = gr.Button("Upload Video")
175
  upload_status = gr.Textbox(label="Upload Status")
176
+
177
  upload_button.click(add_subtitle, inputs=video_input, outputs=upload_status)
178
+
179
  # Add Subtitle
180
  with gr.Row():
181
  add_subtitle_button = gr.Button("Add Subtitle")
182
  subtitle_status = gr.Textbox(label="Subtitle Status")
183
+
184
  add_subtitle_button.click(add_subtitle, inputs=video_input, outputs=subtitle_status)
185
+
186
  # Translate Subtitle
187
  with gr.Row():
188
  language_dropdown = gr.Dropdown(choices=list(languages.keys()), label="Choose Target Language", value="Persian")
189
  translate_button = gr.Button("Translate Subtitle")
190
  translate_status = gr.Textbox(label="Translation Status")
191
+
192
  translate_button.click(translate_subtitle, inputs=[video_input, language_dropdown], outputs=translate_status)
193
+
194
  # Download as Word
195
  with gr.Row():
196
  download_button = gr.Button("Download as Word")
197
  download_status = gr.File(label="Download Translated Word File") # File output for Word download
198
+
199
  download_button.click(download_word, inputs=None, outputs=download_status)
200
+
201
  # Download Subtitled Video
202
  with gr.Row():
203
  download_video_button = gr.Button("Download Subtitled Video")
204
  download_video_status = gr.File(label="Download Subtitled Video") # File output for Video download
205
+
206
  download_video_button.click(download_video, inputs=None, outputs=download_video_status)
207
 
208
  # Launch the Gradio app