File size: 1,859 Bytes
10c3a07
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import cv2
import gradio as gr
import google.generativeai as genai
import os
import PIL.Image

# Configure the API key for Google Generative AI
genai.configure(api_key=os.environ.get("GOOGLE_API_KEY"))

# Define the Generative AI model
model = genai.GenerativeModel('gemini-1.5-flash')

# Function to capture frames from a video
def frame_capture(video_path, num_frames=5):
    vidObj = cv2.VideoCapture(video_path)
    frames = []
    total_frames = int(vidObj.get(cv2.CAP_PROP_FRAME_COUNT))
    frame_step = max(1, total_frames // num_frames)
    count = 0
    
    while len(frames) < num_frames:
        vidObj.set(cv2.CAP_PROP_POS_FRAMES, count)
        success, image = vidObj.read()
        if not success:
            break
        frames.append(image)
        count += frame_step
    
    vidObj.release()
    return frames

# Function to generate text descriptions for frames
def generate_descriptions_for_frames(video_path):
    frames = frame_capture(video_path)
    images = [PIL.Image.fromarray(cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)) for frame in frames]
    
    prompt = "Describe what is happening in each of these frames."
    images_with_prompt = [prompt] + images
    
    responses = model.generate_content(images_with_prompt)
    descriptions = [response.text for response in responses]
    
    formatted_description = format_descriptions(descriptions)
    return formatted_description

# Helper function to format descriptions
def format_descriptions(descriptions):
    return ' '.join(descriptions).strip()

# Define Gradio interface
video_input = gr.Video(label="Upload or Record Video", source="upload", type="filepath")
output_text = gr.Textbox(label="Video Analysis")

# Create Gradio app
gr.Interface(fn=generate_descriptions_for_frames, inputs=video_input, outputs=output_text, title="Video Content Detection System").launch()