RandomPersonRR commited on
Commit
e0d1f98
·
verified ·
1 Parent(s): 9239544

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -74,7 +74,7 @@ def convert_video(use_youtube, youtube_url, video_file, downscale, faster, use_m
74
  input_path = video_file
75
 
76
  # Build the FFmpeg command.
77
- ffmpeg_cmd = ['ffmpeg', '-hwaccel', accel, '-y', '-i', input_path] + extra.split()
78
 
79
  if downscale:
80
  ffmpeg_cmd.extend(['-vf', 'scale=144:-2'])
 
74
  input_path = video_file
75
 
76
  # Build the FFmpeg command.
77
+ ffmpeg_cmd = ['./ffmpeg', '-hwaccel', accel, '-y', '-i', input_path] + extra.split()
78
 
79
  if downscale:
80
  ffmpeg_cmd.extend(['-vf', 'scale=144:-2'])