Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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'])
|