Understand and describe your videos with SmolVLM2, Whisper and Qwen. Fully local.
Project description
🎬 Video Understanding Local
AI-powered video analysis that combines audio transcription and visual understanding - running entirely on your machine!
Perfect for organizing raw footage, preparing video montages, or extracting insights from your video content - all while keeping your data completely private on your own machine.
✨ Key Features
- 👁️ Visual Scene Analysis: Frame-by-frame understanding with SmolVLM2
- 🎙️ Audio Undrestanding: Speech-to-text using Whisper model
- 🔒 Fully Offline: All models run locally - under your entire control
🚀 Installation
Simply install from PyPI:
pip install video_understanding
💡 Quick Start
from video_understanding.video_understanding import analyze_video
# Analyze any video file
summary = analyze_video("path/to/video.mp4")
print(summary)
That's it! The AI will watch your video and tell you what's happening.
📸 Example: Auto-Organizing Raw Footage
Here's a practical example that can save you hours - automatically renaming raw video files based on their content:
import os
from video_understanding.video_understanding import analyze_video
# Define what you want the AI to focus on
system_prompt = """
Analyze this video and generate a concise filename that describes
the main action and subject. Use lowercase with underscores.
Focus on key visual elements and dialogue.
"""
# Process videos in your folder
video_folder = "raw_footage"
for video_file in os.listdir(video_folder):
video_path = os.path.join(video_folder, video_file)
print(f"🎬 Processing: {video_file}")
# Get AI-generated descriptive name
new_name = analyze_video(video_path, system_prompt)
ext = video_file.split(".")[-1]
new_filename = f"{new_name}.{ext}"
# Rename file
os.rename(video_path, os.path.join(video_folder, new_filename))
print(f"✅ Renamed to: {new_filename}\n")
This transforms generic filenames like "VIDEO_001.mp4" into descriptive ones like "team_assembling_robot_arm.mp4", making your footage instantly searchable and organized! 🎉
📝 Description
This package analyzes videos using AI models to understand both audio and visual content. It intelligently splits long videos into manageable chunks, transcribes speech with Whisper, analyzes visual scenes with SmolVLM2, and generates comprehensive summaries using Qwen2.5.
💻 Requirements
Hardware
- GPU: CUDA-compatible GPU strongly recommended (NVIDIA)
- VRAM: Minimum 8GB for smooth operation
- Disk Space: ~25GB for model storage
Software
- Python 3.10+
- CUDA toolkit
- FFmpeg (if on Windows, install it with
winget install ffmpeg --version 7.1.1)
Models (Downloaded Automatically)
On first run, these models will be downloaded:
- 🎙️ Whisper Base (~140MB) - audio transcription
- 👁️ SmolVLM2-2.2B-Instruct (~9GB) - visual understanding
- 🧠 Qwen2.5-7B-Instruct (~14GB) - final summary generation
More examples
# General analysis
summary = analyze_video("video.mp4")
# Custom analysis with specific instructions
custom_prompt = "List all technical topics discussed in this video."
topics = analyze_video("video.mp4", system_prompt=custom_prompt)
# Extract specific information
prompt = "Describe what tools and materials are being used in this tutorial."
tools_list = analyze_video("tutorial.mp4", system_prompt=prompt)
🎉 Happy Video Understanding!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file video_understanding-0.1.0.tar.gz.
File metadata
- Download URL: video_understanding-0.1.0.tar.gz
- Upload date:
- Size: 717.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cee2c24bfa109a35dbc539122a30e9f811534bb7bcb7722d249bfe6fc6fe840
|
|
| MD5 |
b286d660d858e36a888e18ed98404f36
|
|
| BLAKE2b-256 |
7c0f39655d4976be8771d185deacb33015149629032ec8d1dc8ee663eb2fe0d6
|
File details
Details for the file video_understanding-0.1.0-py3-none-any.whl.
File metadata
- Download URL: video_understanding-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d955a276e35cbd0b9113bf81557791f751128ee7c088bf26d97cac685a1bf5b4
|
|
| MD5 |
70dc389a0901be211c66baa9d4261dd3
|
|
| BLAKE2b-256 |
c3302920e01a0d47d4b204258a3cea7c01889f40433dd5f5e740d7808a812371
|