SPACERUNNER99 commited on
Commit
6469880
·
verified ·
1 Parent(s): bc37dbd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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.set_position(text_position))
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