Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -104,7 +104,8 @@ def process_video(video_path):
|
|
104 |
|
105 |
# Using FFmpeg instead of MoviePy for audio extraction
|
106 |
def extract_audio_ffmpeg(video_path, output_audio_path):
|
107 |
-
ffmpeg.input(video_path).output(output_audio_path).overwrite_output().run()
|
|
|
108 |
|
109 |
|
110 |
def process_audio_from_video(video_path):
|
|
|
104 |
|
105 |
# Using FFmpeg instead of MoviePy for audio extraction
|
106 |
def extract_audio_ffmpeg(video_path, output_audio_path):
|
107 |
+
ffmpeg.input(video_path).output(output_audio_path).overwrite_output().run(quiet=False)
|
108 |
+
|
109 |
|
110 |
|
111 |
def process_audio_from_video(video_path):
|