Update app.py
Browse files
app.py
CHANGED
|
@@ -46,7 +46,7 @@ def clip_video_segment(input_video_path, start_time, duration):
|
|
| 46 |
'ffmpeg', '-y', '-ss', str(start_time), '-i', input_video_path,
|
| 47 |
'-t', str(duration), '-c', 'copy', output_video_path
|
| 48 |
])
|
| 49 |
-
print('input_video_path', input_video_path)
|
| 50 |
return output_video_path
|
| 51 |
|
| 52 |
def encode_to_video_fast(frames, fps):
|
|
|
|
| 46 |
'ffmpeg', '-y', '-ss', str(start_time), '-i', input_video_path,
|
| 47 |
'-t', str(duration), '-c', 'copy', output_video_path
|
| 48 |
])
|
| 49 |
+
print('input_video_path', input_video_path, output_video_path)
|
| 50 |
return output_video_path
|
| 51 |
|
| 52 |
def encode_to_video_fast(frames, fps):
|