youssef
commited on
Commit
·
378b5d5
1
Parent(s):
0820857
test
Browse files- src/app.py +2 -2
src/app.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
import gradio as gr
|
2 |
-
from video_processor.processor import VideoAnalyzer
|
3 |
import logging
|
4 |
import torch
|
5 |
import spaces
|
@@ -51,7 +51,7 @@ def on_process(video):
|
|
51 |
|
52 |
logger.info(f"Processing video: {video}")
|
53 |
segments = []
|
54 |
-
duration =
|
55 |
total_segments = int(duration / 10) # Using default 10-second segments
|
56 |
|
57 |
# Process video segments
|
|
|
1 |
import gradio as gr
|
2 |
+
from video_processor.processor import VideoAnalyzer, get_video_duration_seconds
|
3 |
import logging
|
4 |
import torch
|
5 |
import spaces
|
|
|
51 |
|
52 |
logger.info(f"Processing video: {video}")
|
53 |
segments = []
|
54 |
+
duration = get_video_duration_seconds(video) # Using the imported function
|
55 |
total_segments = int(duration / 10) # Using default 10-second segments
|
56 |
|
57 |
# Process video segments
|