File size: 16,783 Bytes
06e7491 79e56cd 06e7491 |
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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 |
import gradio as gr
import pixeltable as pxt
from pixeltable.iterators import FrameIterator
from datetime import datetime
import PIL.Image
from pixeltable.functions import openai, image
import os
import getpass
import requests
import tempfile
import json
import math
from typing import Dict, Optional
# Constants
MAX_VIDEO_SIZE_MB = 35
MAX_FRAMES = 5
# Prompt templates
PROMPT_TEMPLATES = {
"descriptive": {
"name": "Descriptive Analysis",
"system_prompt": """You are a video content analyzer. Please generate a short and concise compelling description
that summarizes the overall action and content of this video sequence. Focus on describing
the key events, changes, and movements you observe across all frames.""",
"description": "Generates a clear, factual description of the video content"
},
"cinematic": {
"name": "Cinematic Analysis (Christopher Nolan style)",
"system_prompt": """You are Christopher Nolan, the acclaimed filmmaker. Describe this visual sequence
as one continuous, flowing narrative moment, as you would when discussing a pivotal
scene from one of your films. Focus on psychological undercurrents, visual symbolism,
and the deeper thematic implications of what unfolds.""",
"description": "Analyzes the video from a filmmaker's perspective with artistic interpretation"
},
"documentary": {
"name": "Documentary Style (David Attenborough)",
"system_prompt": """You are David Attenborough, the renowned naturalist and documentarian. Narrate this sequence
with your characteristic blend of scientific insight and storytelling prowess. Focus on the
compelling details that bring the subject matter to life, while maintaining your signature
warm, authoritative tone.""",
"description": "Creates a nature documentary style narration"
},
"technical": {
"name": "Technical Analysis",
"system_prompt": """You are a technical video analyst. Break down this sequence with precise attention to
technical details including movement patterns, visual composition, lighting conditions,
and any notable technical aspects of the footage.""",
"description": "Provides detailed technical analysis of the video"
},
"labelling": {
"name": "Labelling and Annotation",
"system_prompt": """You are a high-precision video labeling system designed to replace human labelers.
Analyze this sequence with extreme attention to detail, focusing on:
1. Object identification and tracking
2. Precise descriptions of movements and actions
3. Spatial relationships between objects
4. Changes in object positions and behaviors
Your goal is to provide detailed, accurate annotations that could be used for
training computer vision models or validating automated systems.""",
"description": "Provides detailed object and action annotations for machine learning purposes"
}
}
# Voice options
VOICE_OPTIONS = {
"alloy": "Alloy (Balanced)",
"echo": "Echo (Smooth)",
"fable": "Fable (Expressive)",
"onyx": "Onyx (Authoritative)",
"nova": "Nova (Friendly)",
"shimmer": "Shimmer (Warm)"
}
def process_video(video_file: gr.Video, api_key: str, prompt_template: str, voice_choice: str, progress: Optional[gr.Progress] = None) -> tuple[str, str]:
"""Process video with given parameters. Creates new Pixeltable instance for each request."""
try:
if not video_file or not api_key:
return "Please provide both video file and API key.", None
# Set API key
os.environ['OPENAI_API_KEY'] = api_key
video_path = video_file.name if hasattr(video_file, 'name') else str(video_file)
# Check file size
file_size = os.path.getsize(video_path) / (1024 * 1024)
if file_size > MAX_VIDEO_SIZE_MB:
return f"Error: Video file size ({file_size:.1f}MB) exceeds limit of {MAX_VIDEO_SIZE_MB}MB", None
if progress:
progress(0.1, desc="Initializing...")
# Create unique directory for this processing session
session_id = datetime.now().strftime('%Y%m%d_%H%M%S')
dir_name = f'video_processor_{session_id}'
# Initialize Pixeltable
pxt.drop_dir(dir_name, force=True)
pxt.create_dir(dir_name)
# Create main video table
video_table = pxt.create_table(
f'{dir_name}.videos',
{
"video": pxt.VideoType(nullable=True),
"timestamp": pxt.TimestampType(),
}
)
# Create frames view
frames_view = pxt.create_view(
f'{dir_name}.frames',
video_table,
iterator=FrameIterator.create(video=video_table.video, fps=1)
)
frames_view['encoded_frame'] = image.b64_encode(frames_view.frame)
if progress:
progress(0.2, desc="Processing video...")
# Insert video
video_table.insert([{
"video": video_path,
"timestamp": datetime.now(),
}])
if progress:
progress(0.4, desc="Extracting frames...")
# Get frames
frames = frames_view.select(frames_view.encoded_frame).collect()
frame_list = [f["encoded_frame"] for f in frames]
def select_representative_frames(frames: list, num_frames: int = MAX_FRAMES) -> list:
total_frames = len(frames)
if total_frames <= num_frames:
return frames
interval = total_frames / num_frames
selected_indices = [math.floor(i * interval) for i in range(num_frames)]
return [frames[i] for i in selected_indices]
selected_frames = select_representative_frames(frame_list)
if progress:
progress(0.6, desc="Analyzing with GPT-4 Vision...")
def create_frame_content(frames: list) -> list:
content = [
{
"type": "text",
"text": "This is a sequence of frames from a video. Please analyze the overall action and content across all frames:"
}
]
for i, frame in enumerate(frames, 1):
content.extend([
{
"type": "text",
"text": f"Frame {i}:"
},
{
"type": "image_url",
"image_url": {
"url": f"data:image/jpeg;base64,{frame}"
}
}
])
return content
# Create frame content and generate description
frame_content = create_frame_content(selected_frames)
template = PROMPT_TEMPLATES[prompt_template]
messages = [
{
'role': 'system',
'content': template["system_prompt"]
},
{
'role': 'user',
'content': frame_content
}
]
video_table['response'] = openai.chat_completions(
messages=messages,
model='gpt-4o',
max_tokens=500
)
video_table['content'] = video_table.response.choices[0].message.content.astype(pxt.StringType())
if progress:
progress(0.8, desc="Generating audio...")
# Generate voiceover
@pxt.udf
def generate_voiceover(script: str, voice: str) -> str:
try:
response = requests.post(
"https://api.openai.com/v1/audio/speech",
headers={"Authorization": f"Bearer {os.environ['OPENAI_API_KEY']}"},
json={
"model": "tts-1",
"input": script,
"voice": voice,
}
)
if response.status_code != 200:
raise Exception(f"TTS API error: {response.status_code} - {response.text}")
# Create temp file in system temp directory
temp_dir = tempfile.gettempdir()
temp_audio_path = os.path.join(temp_dir, f"voiceover_{session_id}.mp3")
with open(temp_audio_path, 'wb') as f:
f.write(response.content)
return temp_audio_path
except Exception as e:
print(f"Error generating audio: {e}")
return None
# Generate audio and get results
video_table['audio_path'] = generate_voiceover(video_table.content, voice_choice)
results = video_table.select(
video_table.content,
video_table.audio_path
).tail(1)
if progress:
progress(1.0, desc="Processing complete!")
# Clean up
try:
pxt.drop_dir(dir_name, force=True)
except Exception as e:
print(f"Warning: Could not clean up directory {dir_name}: {e}")
return (
results['content'][0], # Generated text content
results['audio_path'][0] # Audio file path
)
except Exception as e:
print(f"Error processing video: {e}")
return f"Error processing video: {str(e)}", None
# Gradio interface
def create_interface():
with gr.Blocks(theme=gr.themes.Base()) as demo:
# Header
gr.Markdown(
"""
<div style="text-align: left; margin-bottom: 2rem;">
<img src="https://raw.githubusercontent.com/pixeltable/pixeltable/main/docs/source/data/pixeltable-logo-large.png" alt="Pixeltable" style="max-width: 200px; margin-bottom: 1rem;" />
<h1>π₯ AI Video Analyzer: Custom GPT-4 Analysis & TTS Narration</h1>
<p>Convert videos into rich narratives with 5 analysis styles - from Christopher Nolan-style cinematic breakdowns to David Attenborough documentary narrations.</p>
</div>
"""
)
# Disclaimer with Whisper reference
gr.HTML(
"""
<div style="background-color: #FFF3CD; border: 1px solid #FF7D04; padding: 1rem; margin: 1rem 0; border-radius: 4px;">
<p style="margin: 0; color: #013056;">
β οΈ <strong>Notice:</strong> This application requires an OpenAI API key and uses the following services:
<ul style="margin-top: 0.5rem;">
<li>GPT-4 Vision API for video analysis</li>
<li>TTS API for audio generation</li>
</ul>
Please be aware of associated API costs. For pricing information, visit
<a href="https://openai.com/pricing" target="_blank" style="color: #856404; text-decoration: underline;">OpenAI's pricing page</a>.
<br><br>
This application does not process audio/transcripts. If you need audio transcription and analysis, check out our
<a href="https://huggingface.co/spaces/Pixeltable/Call-Analysis-AI-Tool" target="_blank" style="color: #856404; text-decoration: underline;">
Call Analysis AI Tool</a> which uses Whisper for audio processing.
</p>
</div>
"""
)
# Information sections side by side
with gr.Row():
with gr.Column():
with gr.Accordion("What does it do?", open=True):
gr.Markdown("""
- π₯ Analyze video content using GPT-4 Vision
- π Generate detailed descriptions and narrations
- π§ Create professional voiceovers using OpenAI's TTS
- π Process up to 5 key frames from your video
""")
with gr.Column():
with gr.Accordion("How to use", open=True):
gr.Markdown("""
1. Enter your OpenAI API key
2. Upload a video file (max 35MB)
3. Choose your preferred analysis style and voice
5. Click "Process Video" and wait for results
""")
# Main interface
with gr.Row():
with gr.Column():
# Configuration controls - side by side
with gr.Row():
with gr.Column(scale=1):
api_key = gr.Textbox(
label="OpenAI API Key",
placeholder="sk-...",
type="password"
)
# Video upload below configuration
video_input = gr.Video(
label=f"Upload Video (max {MAX_VIDEO_SIZE_MB}MB)",
interactive=True
)
process_btn = gr.Button("π¬ Process Video", variant="primary")
gr.Markdown("""
<h4>Click one of the examples below to get started:</h4>
"""
)
gr.Examples(
examples=[["example1.mp4"], ["example2.mp4"]],
inputs=[video_input]
)
# Results column
with gr.Column():
prompt_template = gr.Dropdown(
choices=list(PROMPT_TEMPLATES.keys()),
value="descriptive",
label="Analysis Style",
info="Choose analysis style"
)
voice_choice = gr.Dropdown(
choices=list(VOICE_OPTIONS.keys()),
value="onyx",
label="Voice Selection",
info="Select the voice for your narration"
)
with gr.Tabs():
with gr.TabItem("π Analysis"):
content_output = gr.Textbox(
label="Generated Content",
lines=10
)
with gr.TabItem("π§ Audio"):
audio_output = gr.Audio(
label="Generated Voiceover",
type="filepath"
)
# Footer
gr.HTML(
"""
<div style="margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #e5e7eb;">
<div style="display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;">
<div style="flex: 1;">
<h4 style="margin: 0; color: #374151;">π Built with Pixeltable</h4>
<p style="margin: 0.5rem 0; color: #6b7280;">
Open Source AI infrastructure for intelligent applications
</p>
</div>
<div style="flex: 1;">
<h4 style="margin: 0; color: #374151;">π Resources</h4>
<div style="display: flex; gap: 1.5rem; margin-top: 0.5rem;">
<a href="https://github.com/pixeltable/pixeltable" target="_blank" style="color: #4F46E5; text-decoration: none;">
GitHub
</a>
<a href="https://docs.pixeltable.com" target="_blank" style="color: #4F46E5; text-decoration: none;">
Documentation
</a>
</div>
</div>
</div>
</div>
"""
)
# Connect the process button
process_btn.click(
fn=process_video,
inputs=[video_input, api_key, prompt_template, voice_choice],
outputs=[content_output, audio_output]
)
return demo
if __name__ == "__main__":
demo = create_interface()
demo.launch() |