Update app.py
Browse files
app.py
CHANGED
@@ -190,7 +190,7 @@ def create_subtitle_clips(subtitles, videosize, fontsize, font, color, debug):
|
|
190 |
subtitle_x_position = 'center'
|
191 |
subtitle_y_position = video_height * 4 / 5
|
192 |
text_position = (subtitle_x_position, subtitle_y_position)
|
193 |
-
subtitle_clips.append(text_clip.
|
194 |
return subtitle_clips
|
195 |
|
196 |
|
|
|
190 |
subtitle_x_position = 'center'
|
191 |
subtitle_y_position = video_height * 4 / 5
|
192 |
text_position = (subtitle_x_position, subtitle_y_position)
|
193 |
+
subtitle_clips.append(text_clip.with_position(text_position))
|
194 |
return subtitle_clips
|
195 |
|
196 |
|