jbilcke-hf HF staff commited on
Commit
b5711a4
1 Parent(s): 6def2be

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -116,7 +116,12 @@ def interpolate_video_frames(input_file_path, output_file_path, output_fps=10, d
116
  '-r', str(output_fps), # output frame rate
117
  output_file_path # Output file
118
  ]
119
-
 
 
 
 
 
120
  # Execute the command
121
  try:
122
  subprocess.run(cmd, check=True)
 
116
  '-r', str(output_fps), # output frame rate
117
  output_file_path # Output file
118
  ]
119
+
120
+ print("input_fps = "+input_fps)
121
+ print("output_fps = "+output_fps)
122
+ print("desired_duration = "+desired_duration)
123
+ print("cmd = " + cmd)
124
+
125
  # Execute the command
126
  try:
127
  subprocess.run(cmd, check=True)