File size: 969 Bytes
426a08c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import gradio as gr
from src.video_processor.processor import VideoAnalyzer
import logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
def process_video(video_path):
try:
analyzer = VideoAnalyzer()
result = analyzer.process_video(video_path)
return result[0]["description"]
except Exception as e:
logger.error(f"Error processing video: {str(e)}", exc_info=True)
return f"Error processing video: {str(e)}"
# Create Gradio interface
demo = gr.Interface(
fn=process_video,
inputs=gr.Video(label="Upload your video"),
outputs=gr.Textbox(label="Video Analysis", lines=10),
title="Video Analysis with SmolVLM",
description="Upload a video to get a detailed analysis of its content, including actions, events, timestamps, and important details.",
examples=[], # You can add example videos here
cache_examples=False
)
if __name__ == "__main__":
demo.launch() |