Update app.py
Browse files
app.py
CHANGED
|
@@ -248,7 +248,7 @@ def process_entry(entry, i, video_width, video_height, add_voiceover, target_lan
|
|
| 248 |
logger.info("Methods in AudioFileClip:")
|
| 249 |
for method in dir(audio_clip):
|
| 250 |
logger.info(method)
|
| 251 |
-
audio_segment = audio_clip.with_duration(entry["end"] - entry["start"]) # No subclip here
|
| 252 |
|
| 253 |
return txt_clip, audio_segment
|
| 254 |
|
|
|
|
| 248 |
logger.info("Methods in AudioFileClip:")
|
| 249 |
for method in dir(audio_clip):
|
| 250 |
logger.info(method)
|
| 251 |
+
audio_segment = audio_clip.with_start(entry["start"]).with_duration(entry["end"] - entry["start"]) # No subclip here
|
| 252 |
|
| 253 |
return txt_clip, audio_segment
|
| 254 |
|