jbilcke-hf HF staff commited on
Commit
35d2d3f
1 Parent(s): 00c39cc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -86,7 +86,7 @@ def interpolate_video_frames(input_file_path, output_file_path, output_fps=10, d
86
  # Construct the ffmpeg command for interpolation
87
  cmd = [
88
  'ffmpeg',
89
- '-i', file_path, # input file
90
  '-filter:v', f'minterpolate=fps={output_fps}', # minterpolate filter options
91
  '-r', str(output_fps), # output frame rate
92
  output_file_path # Output file
 
86
  # Construct the ffmpeg command for interpolation
87
  cmd = [
88
  'ffmpeg',
89
+ '-i', input_file_path, # input file
90
  '-filter:v', f'minterpolate=fps={output_fps}', # minterpolate filter options
91
  '-r', str(output_fps), # output frame rate
92
  output_file_path # Output file