File size: 23,013 Bytes
972f830 5cb7f5d 7d09e17 972f830 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d 7d09e17 5cb7f5d |
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 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 |
import streamlit as st
from phi.agent import Agent
from phi.model.google import Gemini
from phi.tools.duckduckgo import DuckDuckGo
from google.generativeai import upload_file, get_file
import google.generativeai as genai
import time
from pathlib import Path
import tempfile
from dotenv import load_dotenv
import os
import yt_dlp
import re
import requests
import json
import subprocess
import random
load_dotenv()
API_KEY = os.getenv("GOOGLE_API_KEY")
if API_KEY:
genai.configure(api_key=API_KEY)
# Page configuration
st.set_page_config(
page_title="The Plug",
page_icon="πΉ"
)
st.title("The Plug")
@st.cache_resource
def initialize_agent():
return Agent(
name="Video AI Summarizer",
model=Gemini(id="gemini-2.0-flash-exp"),
tools=[DuckDuckGo()],
markdown=True,
)
def download_video(url):
"""Download video from URL using yt-dlp with production-optimized settings"""
temp_video = tempfile.NamedTemporaryFile(delete=False, suffix='.mp4')
temp_video.close() # Close the file handle so yt-dlp can write to it
# Get proxy configuration from environment (if available)
proxy_url = os.getenv('HTTP_PROXY') or os.getenv('HTTPS_PROXY')
# Base configuration optimized for production environments
base_opts = {
'outtmpl': temp_video.name,
'quiet': False,
'no_warnings': False,
'nooverwrites': False,
# Production-optimized anti-detection measures
'user_agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',
'referer': 'https://www.youtube.com/',
'http_headers': {
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7',
'Accept-Language': 'en-US,en;q=0.9',
'Accept-Encoding': 'gzip, deflate, br',
'DNT': '1',
'Connection': 'keep-alive',
'Upgrade-Insecure-Requests': '1',
'Sec-Fetch-Dest': 'document',
'Sec-Fetch-Mode': 'navigate',
'Sec-Fetch-Site': 'none',
'Sec-Fetch-User': '?1',
'Cache-Control': 'max-age=0',
},
# Aggressive retry and timeout settings for production
'retries': 5,
'fragment_retries': 5,
'retry_sleep_functions': {
'http': lambda n: min(120, 3 ** n), # More aggressive backoff
'fragment': lambda n: min(120, 3 ** n),
},
'extractor_retries': 5,
'socket_timeout': 60, # Longer timeout for slower connections
# Additional production-specific options
'nocheckcertificate': True,
'ignoreerrors': False,
'logtostderr': False,
'sleep_interval': 2, # Longer base sleep
'max_sleep_interval': 10, # Longer max sleep
'sleep_interval_requests': 2, # Sleep between requests
'sleep_interval_subtitles': 2, # Sleep between subtitle requests
# Try to avoid geo-blocking and rate limiting
'geo_bypass': True,
'geo_bypass_country': 'US',
# Force IPv4 to avoid IPv6 issues in some production environments
'force_ipv4': True,
# Additional headers to appear more browser-like
'add_header': [
'Sec-CH-UA:"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"',
'Sec-CH-UA-Mobile:?0',
'Sec-CH-UA-Platform:"Linux"'
]
}
# Add proxy support if available
if proxy_url:
base_opts['proxy'] = proxy_url
st.info(f"π Using proxy: {proxy_url[:20]}...")
# Try different proxy configurations if main proxy fails
free_proxies = _get_free_proxies() if not proxy_url else []
# Build base strategies first
base_strategies = [
# Strategy 1: Production-optimized configuration
{**base_opts, 'format': 'worst[height<=720][ext=mp4]/worst[ext=mp4]/worst'},
# Strategy 2: Specific format codes that work well in production
{**base_opts, 'format': '18/22/37/38/136+140/135+140/134+140', 'extract_flat': False},
# Strategy 3: Mobile user agent (sometimes bypasses restrictions)
{**base_opts,
'user_agent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 17_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Mobile/15E148 Safari/604.1',
'http_headers': {
'User-Agent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 17_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Mobile/15E148 Safari/604.1',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'Accept-Language': 'en-US,en;q=0.9',
'Accept-Encoding': 'gzip, deflate, br',
},
'format': 'worst[ext=mp4]/worst'},
# Strategy 4: Minimal configuration (last resort)
{
'outtmpl': temp_video.name,
'format': '18/worst',
'quiet': True,
'no_warnings': True,
'user_agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36',
'socket_timeout': 30,
'retries': 2,
'sleep_interval': 3,
'force_ipv4': True,
},
# Strategy 5: Alternative extractor approach
{**base_opts,
'format': 'best[filesize<50M]/worst',
'prefer_free_formats': True,
'youtube_include_dash_manifest': False,
'extract_flat': False}
]
# Add proxy strategies if we have proxies available
download_strategies = base_strategies.copy()
if free_proxies:
st.info(f"π Adding proxy strategies with {len(free_proxies)} proxies...")
proxy_strategies = _add_proxy_strategies(base_strategies, free_proxies)
download_strategies.extend(proxy_strategies)
last_error = None
total_strategies = len(download_strategies)
for attempt, strategy in enumerate(download_strategies):
try:
st.info(f"π Download strategy {attempt + 1}/{total_strategies}: {_get_strategy_description(attempt)}")
# Add random delay to avoid being flagged as bot
import random
initial_delay = random.uniform(1, 3)
time.sleep(initial_delay)
with yt_dlp.YoutubeDL(strategy) as ydl:
ydl.download([url])
# Verify the file was downloaded and has content
if os.path.exists(temp_video.name) and os.path.getsize(temp_video.name) > 0:
file_size_mb = os.path.getsize(temp_video.name) / (1024 * 1024)
st.success(f"β
Download successful! Strategy {attempt + 1} worked. File size: {file_size_mb:.2f} MB")
return temp_video.name
else:
raise Exception("Downloaded file is empty or doesn't exist")
except Exception as e:
last_error = e
error_msg = str(e)
# Log specific error types for debugging
if "403" in error_msg:
st.warning(f"π« Strategy {attempt + 1} blocked (403 Forbidden)")
elif "404" in error_msg:
st.warning(f"β Strategy {attempt + 1} failed (404 Not Found)")
elif "timeout" in error_msg.lower():
st.warning(f"β° Strategy {attempt + 1} timed out")
else:
st.warning(f"β Strategy {attempt + 1} failed: {error_msg[:100]}...")
# Clean up failed download
if os.path.exists(temp_video.name):
try:
os.unlink(temp_video.name)
except:
pass
# Wait before trying next strategy (except on last attempt)
if attempt < total_strategies - 1:
# Progressive delay: 3s, 6s, 9s, 12s, 15s
wait_time = min(15, 3 * (attempt + 1))
st.info(f"β³ Waiting {wait_time} seconds before trying next strategy...")
time.sleep(wait_time)
continue
# All yt-dlp strategies failed - try alternative download methods
st.warning("π yt-dlp strategies failed. Trying alternative download methods...")
try:
# Alternative method 1: Try using youtube-dl as fallback
return _fallback_youtube_dl(url, temp_video.name)
except Exception as fallback_error:
st.warning(f"π± youtube-dl fallback failed: {str(fallback_error)[:50]}...")
try:
# Alternative method 2: Try direct API approach (if available)
return _fallback_direct_download(url, temp_video.name)
except Exception as api_error:
st.error(f"π Direct download fallback failed: {str(api_error)[:50]}...")
# Final failure
st.error(f"π₯ All {total_strategies} yt-dlp strategies + 2 fallback methods failed!")
raise Exception(f"Complete download failure. yt-dlp error: {str(last_error)}. Fallback errors: youtube-dl={str(fallback_error)}, direct={str(api_error)}")
def _fallback_youtube_dl(url, output_path):
"""Fallback to youtube-dl if yt-dlp fails"""
st.info("π Trying youtube-dl fallback...")
try:
# Try to use youtube-dl via subprocess (if available)
cmd = [
'youtube-dl',
'--format', 'worst[ext=mp4]/worst',
'--output', output_path,
'--user-agent', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36',
'--referer', 'https://www.youtube.com/',
'--socket-timeout', '30',
'--retries', '3',
url
]
result = subprocess.run(cmd, capture_output=True, text=True, timeout=180)
if result.returncode == 0 and os.path.exists(output_path) and os.path.getsize(output_path) > 0:
st.success("β
youtube-dl fallback successful!")
return output_path
else:
raise Exception(f"youtube-dl failed: {result.stderr}")
except FileNotFoundError:
raise Exception("youtube-dl not installed")
except subprocess.TimeoutExpired:
raise Exception("youtube-dl timeout")
except Exception as e:
raise Exception(f"youtube-dl error: {str(e)}")
def _fallback_direct_download(url, output_path):
"""Last resort: try to extract video URL and download directly"""
st.info("π Trying direct download fallback...")
try:
# This is a simplified approach - in production you might want to use
# more sophisticated video URL extraction methods
# Extract video ID from YouTube URL
video_id = None
patterns = [
r'(?:youtube\.com/watch\?v=|youtu\.be/|youtube\.com/shorts/)([^&\n?#]+)',
r'youtube\.com/embed/([^&\n?#]+)',
]
for pattern in patterns:
match = re.search(pattern, url)
if match:
video_id = match.group(1)
break
if not video_id:
raise Exception("Could not extract video ID")
# Try to get video info using a simple approach
# Note: This is a basic implementation - you might want to use more robust methods
info_url = f"https://www.youtube.com/oembed?url=https://www.youtube.com/watch?v={video_id}&format=json"
headers = {
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36',
'Accept': 'application/json',
}
response = requests.get(info_url, headers=headers, timeout=30)
if response.status_code == 200:
info = response.json()
st.info(f"πΉ Found video: {info.get('title', 'Unknown title')}")
# This is where you would implement actual video download logic
# For now, we'll raise an exception as this requires more complex implementation
raise Exception("Direct download method needs video stream URL extraction")
else:
raise Exception(f"Could not get video info: HTTP {response.status_code}")
except Exception as e:
raise Exception(f"Direct download failed: {str(e)}")
def _get_free_proxies():
"""Get a list of free proxy servers for fallback (basic implementation)"""
# Note: In production, you'd want to use a reliable proxy service
# This is just a basic fallback mechanism
try:
# Try to get some basic proxy information
# In a real implementation, you'd use a proxy service API
return [
'http://proxy1.example.com:8080', # Replace with actual proxy services
'http://proxy2.example.com:8080', # These are just examples
]
except:
return []
def _add_proxy_strategies(base_strategies, proxies):
"""Add proxy-enabled versions of strategies"""
proxy_strategies = []
for proxy in proxies[:2]: # Limit to 2 proxies to avoid too many attempts
for strategy in base_strategies[:2]: # Use first 2 base strategies with proxies
proxy_strategy = strategy.copy()
proxy_strategy['proxy'] = proxy
proxy_strategies.append(proxy_strategy)
return proxy_strategies
def _get_strategy_description(attempt):
"""Get human-readable description of download strategy"""
descriptions = [
"Production-optimized (720p max)",
"Specific format codes",
"Mobile user agent",
"Minimal configuration",
"Alternative extractor",
"Proxy method 1",
"Proxy method 2",
"Proxy method 3",
"Proxy method 4"
]
return descriptions[attempt] if attempt < len(descriptions) else f"Strategy {attempt + 1}"
def is_valid_url(url):
"""Check if URL is from supported platforms"""
patterns = [
r'(https?://)?(www\.)?(youtube\.com|youtu\.be)',
r'(https?://)?(www\.)?(instagram\.com|instagr\.am)',
r'(https?://)?(www\.)?(tiktok\.com)',
r'(https?://)?(www\.)?(twitter\.com|x\.com)',
]
for pattern in patterns:
if re.search(pattern, url, re.IGNORECASE):
return True
return False
# Initialize the agent
multimodal_Agent = initialize_agent()
# Initialize session state for video caching and page navigation
if 'video_path' not in st.session_state:
st.session_state.video_path = None
if 'current_video_url' not in st.session_state:
st.session_state.current_video_url = None
if 'current_video_file' not in st.session_state:
st.session_state.current_video_file = None
if 'last_input_method' not in st.session_state:
st.session_state.last_input_method = None
if 'current_page' not in st.session_state:
st.session_state.current_page = "upload" # "upload" or "chat"
if 'chat_history' not in st.session_state:
st.session_state.chat_history = []
def cleanup_video_cache():
"""Clean up cached video file and reset session"""
if st.session_state.video_path and os.path.exists(st.session_state.video_path):
Path(st.session_state.video_path).unlink(missing_ok=True)
st.session_state.video_path = None
st.session_state.current_video_url = None
st.session_state.current_video_file = None
st.session_state.current_page = "upload"
st.session_state.chat_history = []
# Page routing based on current state
if st.session_state.current_page == "upload":
# UPLOAD PAGE
st.subheader("Upload Your Video")
# Input method selection
input_method = st.radio(
"Choose how to provide your video:",
["Upload Video File", "Paste Video Link"],
help="Select how you want to provide the video for analysis"
)
# Clean up cache if user switches input methods
if st.session_state.last_input_method != input_method:
cleanup_video_cache()
st.session_state.last_input_method = input_method
video_path = None
if input_method == "Upload Video File":
# File uploader
video_file = st.file_uploader(
"Upload a video file",
type=['mp4', 'mov', 'avi'],
help="Upload a video for AI analysis"
)
if video_file:
# Check if this is a different file than the cached one
if (st.session_state.current_video_file != video_file.name or
st.session_state.video_path is None or
not os.path.exists(st.session_state.video_path)):
# Clean up previous video if it exists
if st.session_state.video_path and os.path.exists(st.session_state.video_path):
Path(st.session_state.video_path).unlink(missing_ok=True)
with tempfile.NamedTemporaryFile(delete=False, suffix='.mp4') as temp_video:
temp_video.write(video_file.read())
st.session_state.video_path = temp_video.name
st.session_state.current_video_file = video_file.name
st.session_state.current_video_url = None # Reset URL cache
video_path = st.session_state.video_path
else: # Paste Video Link
# URL input
video_url = st.text_input(
"Paste video link",
placeholder="https://youtube.com/watch?v=... or Instagram/TikTok/X link",
help="Paste a video URL from YouTube, Instagram, TikTok, or X"
)
if video_url:
if is_valid_url(video_url):
# Check if this is a different URL than the cached one
if (st.session_state.current_video_url != video_url or
st.session_state.video_path is None or
not os.path.exists(st.session_state.video_path)):
# Clean up previous video if it exists
if st.session_state.video_path and os.path.exists(st.session_state.video_path):
Path(st.session_state.video_path).unlink(missing_ok=True)
try:
with st.spinner("Downloading video..."):
st.session_state.video_path = download_video(video_url)
st.session_state.current_video_url = video_url
st.session_state.current_video_file = None # Reset file cache
except Exception as e:
st.error(f"Error downloading video: {e}")
st.session_state.video_path = None
st.session_state.current_video_url = None
video_path = st.session_state.video_path
else:
st.warning("Please enter a valid YouTube, Instagram, TikTok, or X video URL")
# Proceed to chat if video is loaded
if video_path and os.path.exists(video_path) and os.path.getsize(video_path) > 0:
if st.button("Start Chat", type="primary", use_container_width=True):
st.session_state.current_page = "chat"
st.rerun()
elif st.session_state.current_page == "chat":
# CHAT PAGE
video_path = st.session_state.video_path
if not video_path or not os.path.exists(video_path) or os.path.getsize(video_path) == 0:
st.error("Video not found. Please upload a video first.")
if st.button("Back to Upload"):
st.session_state.current_page = "upload"
st.rerun()
else:
# Navigation and controls
col1, col2 = st.columns([3, 1])
with col1:
st.subheader("Chat with Your Video")
with col2:
if st.button("New Video", help="Upload a different video"):
cleanup_video_cache()
st.session_state.current_page = "upload"
st.rerun()
# Display chat history
if st.session_state.chat_history:
st.markdown("### Chat History")
for i, (query, response) in enumerate(st.session_state.chat_history):
with st.container():
st.markdown(f"**You:** {query}")
st.markdown(f"**AI:** {response}")
st.divider()
# Chat input
st.markdown("### Ask a Question")
user_query = st.text_input(
"What would you like to know about this video?",
placeholder="Example: What is the main topic? Summarize the key points...",
help="Ask any question about the video content.",
key="chat_input"
)
if st.button("Send", type="primary", use_container_width=True):
if not user_query.strip():
st.warning("Please enter a question about the video.")
else:
try:
with st.spinner("Analyzing video and gathering insights..."):
# Upload and process video file
processed_video = upload_file(video_path)
while processed_video.state.name == "PROCESSING":
time.sleep(1)
processed_video = get_file(processed_video.name)
# Prompt generation for analysis
analysis_prompt = (
f"""
You are an expert video analyst. Analyze the uploaded video and respond to this query:
Query: {user_query}
Provide a comprehensive, insightful response that includes:
1. Direct analysis of the video content
2. Key insights and observations
3. Any supplementary context that would be helpful
4. Actionable takeaways
Be conversational and engaging while being thorough and accurate.
"""
)
# AI agent processing
response = multimodal_Agent.run(analysis_prompt, videos=[processed_video])
# Add to chat history
st.session_state.chat_history.append((user_query, response.content))
# Rerun to update chat history display
st.rerun()
except Exception as error:
st.error(f"An error occurred during analysis: {error}")
# Customize UI styling
st.markdown(
"""
<style>
.stTextInput input {
min-height: 40px;
}
.stRadio [role="radiogroup"] {
display: flex;
gap: 20px;
}
.stRadio label {
font-weight: 500;
}
</style>
""",
unsafe_allow_html=True
) |