Clip any moment from any video with prompts
295
stars
13
commits
Python
primary language
Jul 21, 2026
updated
Multimodal AI video clipping - Extract any moment from any video using natural language prompts. Just describe what you're looking for, and AI will find and clip it for you.
Looking for an api to build your own Opus-clip style product ? Check the api below
https://muapi.ai/playground/autocrop
https://muapi.ai/playground/ai-clipping
Video Input → AI Analysis → Prompt Matching → Clip Extraction → Output Video
The AI evaluates every frame of your video:
Simply describe what you want:
Input Video: YouTube Example
Output Video: See Result
# Clone the repository
git clone https://github.com/SamurAIGPT/Clip-Anything.git
cd Clip-Anything
# Install dependencies
pip install -r requirements.txt
# Run the clipper
python clip_anything.py --video input.mp4 --prompt "your prompt here"
Want production-ready clipping at scale? Use the Vadoo AI Clipping API:
import requests
response = requests.post(
"https://viralapi.vadoo.tv/api/create_clips",
headers={"X-API-KEY": "your_api_key"},
json={
"video_url": "https://example.com/video.mp4",
"prompt": "highlight moments"
}
)
| Use Case | Example Prompt |
|---|---|
| Sports Highlights | "Extract all scoring plays" |
| Podcast Clips | "Find the most insightful moments" |
| Travel Vlogs | "Clip the scenic views" |
| Tutorials | "Get the key demonstration steps" |
| Interviews | "Find emotional reactions" |
| Component | Purpose |
|---|---|
| GPT-4V | Visual understanding |
| Whisper | Audio transcription |
| FFmpeg | Video processing |
| OpenCV | Frame analysis |
Contributions are welcome! Please feel free to submit a Pull Request.
MIT License - see LICENSE for details.
13 commits
Python
100.0%
Clip any moment from any video with prompts
295
stars
13
commits
Python
primary language
Jul 21, 2026
updated
Multimodal AI video clipping - Extract any moment from any video using natural language prompts. Just describe what you're looking for, and AI will find and clip it for you.
Looking for an api to build your own Opus-clip style product ? Check the api below
https://muapi.ai/playground/autocrop
https://muapi.ai/playground/ai-clipping
Video Input → AI Analysis → Prompt Matching → Clip Extraction → Output Video
The AI evaluates every frame of your video:
Simply describe what you want:
Input Video: YouTube Example
Output Video: See Result
# Clone the repository
git clone https://github.com/SamurAIGPT/Clip-Anything.git
cd Clip-Anything
# Install dependencies
pip install -r requirements.txt
# Run the clipper
python clip_anything.py --video input.mp4 --prompt "your prompt here"
Want production-ready clipping at scale? Use the Vadoo AI Clipping API:
import requests
response = requests.post(
"https://viralapi.vadoo.tv/api/create_clips",
headers={"X-API-KEY": "your_api_key"},
json={
"video_url": "https://example.com/video.mp4",
"prompt": "highlight moments"
}
)
| Use Case | Example Prompt |
|---|---|
| Sports Highlights | "Extract all scoring plays" |
| Podcast Clips | "Find the most insightful moments" |
| Travel Vlogs | "Clip the scenic views" |
| Tutorials | "Get the key demonstration steps" |
| Interviews | "Find emotional reactions" |
| Component | Purpose |
|---|---|
| GPT-4V | Visual understanding |
| Whisper | Audio transcription |
| FFmpeg | Video processing |
| OpenCV | Frame analysis |
Contributions are welcome! Please feel free to submit a Pull Request.
MIT License - see LICENSE for details.
13 commits
Python
100.0%