youtube-shorts-generator
- Repo stars 3,767
- Author updated Live
- Author repo AI-Youtube-Shorts-Generator
- Domain
- Data
- Compatible agents
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- Trust score
- 88 / 100 · community maintained
- Author / version / license
- @SamurAIGPT · no license declared
- Token usage
- Lean
- Setup complexity
- Guided setup
- External API key
- Required · Vendor-specific
- Operating systems
- Windows
- Runtime requirements
- Python >=3.10
- Permissions
-
- Read-only
- Write / modify
- Shell exec
- Env read
- Network behavior
- External requests
- Install commands
- 26 variants
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
---
name: youtube-shorts-generator
description: Generate viral 9:16 YouTube Shorts (or TikTok/Reels clips) from a long-form YouTube URL or local…
category: data
runtime: Python
---
# youtube-shorts-generator output preview
## PART A: Task fit
- Use case: Generate viral 9:16 YouTube Shorts (or TikTok/Reels clips) from a long-form YouTube URL or local video. Triggers on requests like "make shorts from this video", "extract viral clips from this YouTube link", "auto-clip this podcast", "find the best moments and crop vertical". Pipeline downloads the source, transcribes via MuAPI /openai-whisper, ranks highlights through a virality framework (hook / emotional peak / opinion bomb / revelation / conflict / quotable / story peak / practical value), dedupes overlapping candidates, and vertically auto-crops the top N as mp4s..
- Inputs: target material, constraints, expected output, and acceptance criteria.
- Evidence boundary: follow “When to use this skill / Inputs to collect before running / Prerequisites (verify before first run)” and do not present inference as author intent.
## PART B: Execution result
- **01** The card summarizes the use case; runtime output centers on “Generate viral 9:16 YouTube Shorts (or TikTok/Reels clips) from a long-form YouTube URL or local video. Triggers on requests like "make shorts from this video", "extract viral clips from this YouTube link", "auto-clip this podcast", "find the best moments and crop vertical". Pipeline downloads the source, transcribes via MuAPI /openai-whisper, ranks highlights through a virality framework (hook / emotional peak / opinion bomb / revelation / conflict / quotable / story peak / practical value), dedupes overlapping candidates, and vertically auto-crops the top N as mp4s.”.
- **02** When the source has headings, the agent prioritizes “When to use this skill / Inputs to collect before running / Prerequisites (verify before first run)” so the result follows the author’s structure.
- **03** Typical output includes task judgment, concrete steps, required commands or file edits, validation, and follow-up options.
- **04** Risk context follows the fingerprint: read files, write/modify files, run shell commands, read environment variables; may access external network resources; requires Vendor-specific API keys.
## Running Rules
- read files, write/modify files, run shell commands, read environment variables; may access external network resources; requires Vendor-specific API keys.
- Validate with a small sample before expanding scope.
- Return the result, validation criteria, and next iteration options. The source mentions slash commands such as `/openai-whisper`; use them first when your agent supports command triggers.
Name target files or source material, expected output, forbidden changes, and whether network or shell access is allowed. Permission fingerprint: read files, write/modify files, run shell commands, read environment variables.
Start with a small task and check whether the result follows “When to use this skill / Inputs to collect before running / Prerequisites (verify before first run)”. Inspect diffs, logs, previews, or tests before expanding scope.
Confirm the final output includes a concrete result, evidence, and next action. If it stays generic, tighten inputs, boundaries, and acceptance criteria.
---
name: youtube-shorts-generator
description: Generate viral 9:16 YouTube Shorts (or TikTok/Reels clips) from a long-form YouTube URL or local…
category: data
source: SamurAIGPT/AI-Youtube-Shorts-Generator
---
# youtube-shorts-generator
## When to use
- Generate viral 9:16 YouTube Shorts (or TikTok/Reels clips) from a long-form YouTube URL or local video. Triggers on re…
- Use it when the task has clear inputs, repeatable steps, and validation criteria.
## What to provide
- Target material, scope, expected result, and forbidden changes.
- Whether network, commands, file writes, or external services are allowed.
## Execution rules
- Organize steps around “When to use this skill / Inputs to collect before running / Prerequisites (verify before first run)” and keep inference separate from source facts.
- read files, write/modify files, run shell commands, read environment variables; may access external network resources; requires Vendor-specific API keys.
- Validate with a small sample before expanding the task.
## Output requirements
- Return the deliverable, key evidence, validation method, and next action.
- Mark missing information as unknown; do not invent commands, platforms, or dependencies. The author source anchors workflow facts; repository files anchor sources and commands; Fluxly only adds fit, limitations, and quality judgment.
skill "youtube-shorts-generator" {
input -> user goal + target files + boundaries + acceptance criteria
context -> When to use this skill / Inputs to collect before running / Prerequisites (verify before first run)
rules -> SKILL.md triggers / order / output contract
runtime -> Python | read files, write/modify files, run shell commands, read environment variables | may access external network resources
guardrails -> requires Vendor-specific API keys + small-sample validation + diff/log review
output -> copyable result + checklist + next iteration
} YouTube Shorts Generator
End-to-end pipeline that turns one long video into N viral-ready vertical clips. Each clip ships with a viral score (0–100), an opening hook line, and a one-sentence reason it should perform.
Reference implementation: https://github.com/SamurAIGPT/AI-Youtube-Shorts-Generator
When to use this skill
- "Generate shorts from this YouTube video"
- "Find the most viral 60-second clips in this podcast"
- "Auto-crop this interview to 9:16"
- "Give me TikTok clips from this lecture"
If the user only wants transcription, summarization, or thumbnails — this is the wrong skill.
Inputs to collect before running
Ask once, then proceed:
- Source — YouTube URL (preferred) or path/URL to an mp4
num_clips— default 3aspect_ratio— default9:16(also:1:1,4:5)language— default auto-detect (forwarded to MuAPI Whisper as ISO-639-1)- Output JSON path — optional; if set, dump full result there
If the user gave a URL and nothing else, use defaults and don't block on questions.
Prerequisites (verify before first run)
- Python 3.10+
- A MuAPI key — set
MUAPI_API_KEYin.env. Powers download, transcription, highlight ranking, and clipping. If missing, stop and ask the user for it; do not invent one. pip install -r requirements.txtinside a venv
If the repo isn't cloned yet, clone https://github.com/SamurAIGPT/AI-Youtube-Shorts-Generator.git into the working directory.
Pipeline (what to execute)
Run the eight stages in order. Each maps to a module in shorts_generator/.
- Download (
downloader.py) — pull the source video at the requested resolution (360/480/720/1080, default720). - Transcribe (
transcriber.py) — MuAPI/openai-whisperruns Whisper server-side and returns timestampedverbose_jsonsegments. Billed per minute of audio. - Classify content type — LLM tags the video (podcast / interview / tutorial / vlog / lecture / monologue) and density. Tune the highlight prompt per type.
- Chunk if long (
highlights.py) — videos >LONG_VIDEO_THRESHOLD(1800s default) are split intoCHUNK_SIZE_SECONDS(1200s default) windows withCHUNK_OVERLAP_SECONDS(60s default) overlap so cross-boundary highlights aren't missed. - Rank highlights — LLM scans each chunk through
VIRALITY_CRITERIA:- Hook moments — strong opening line that stops the scroll
- Emotional peaks — laughter, anger, vulnerability, awe
- Opinion bombs — spicy, contrarian, debate-bait takes
- Revelation moments — "wait, what?" reframes
- Conflict — disagreement, tension, callouts
- Quotable lines — tight, screenshot-worthy phrasing
- Story peaks — climax of a narrative arc
- Practical value — actionable insight a viewer will save
Each candidate gets
start_time,end_time,score0–100,title,hook_sentence,virality_reason. Aim for 30–75s clips unless content dictates otherwise.
- Dedupe — collapse overlaps. Rule: if two candidates overlap > 50%, keep the higher score, drop the other.
- Top-N selection — sort surviving candidates by score, take
num_clips. - Vertical auto-crop (
clipper.py) — render each highlight ataspect_ratio. Auto-handles face tracking and screen recordings; no Haar cascades.
Invocation
CLI (the standard path):
python main.py "<YOUTUBE_URL>" \
--num-clips 5 \
--aspect-ratio 9:16 \
--output-json result.json
Python API (when embedding in another pipeline):
from shorts_generator import generate_shorts
result = generate_shorts(
"<URL>",
num_clips=5,
aspect_ratio="9:16",
)
for short in result["shorts"]:
print(short["score"], short["title"], short["clip_url"])
Batch mode — urls.txt with one URL per line:
xargs -a urls.txt -I{} python main.py "{}"
CLI flags reference
| Flag | Default | Notes |
|---|---|---|
--num-clips |
3 |
How many shorts to render |
--aspect-ratio |
9:16 |
9:16 for TikTok/Reels, 1:1 square, anything else by flag |
--format |
720 |
Source download resolution |
--language |
auto | Whisper language code (e.g. en) |
--output-json |
— | Dump full result (transcript + all candidates + clip URLs) |
Output schema
{
"source_video_url": "...",
"transcript": { "duration": 1873.4, "segments": [...] },
"highlights": [ /* every candidate, before top-N cut */ ],
"shorts": [
{
"title": "The one mistake that cost me $50K",
"start_time": 124.3,
"end_time": 187.6,
"score": 92,
"hook_sentence": "Nobody talks about this, but it killed my first startup...",
"virality_reason": "Opens with a number + regret, peaks on a contrarian lesson",
"clip_url": "https://.../short_1.mp4"
}
]
}
When reporting back to the user, surface for each clip: rank, score, time range, title, hook, and clip URL. Skip the raw transcript unless asked.
Tunable knobs
shorts_generator/highlights.pyVIRALITY_CRITERIA— reorder or extend signalsHIGHLIGHT_SYSTEM_PROMPT— duration sweet spot, hook rules, JSON schemaCHUNK_SIZE_SECONDS— 1200s defaultLONG_VIDEO_THRESHOLD— 1800s defaultCHUNK_OVERLAP_SECONDS— 60s default
shorts_generator/config.py(or env vars)MUAPI_POLL_INTERVAL— 5sMUAPI_POLL_TIMEOUT— 1800s
Whisper transcription
Audio is transcribed by MuAPI's /openai-whisper endpoint (server-side whisper-1, billed per minute). The CLI passes --language straight through; leave it empty for auto-detection, or pass an ISO-639-1 code (e.g. en) to lock it.
Failure modes — handle, don't paper over
- Whisper produced no segments — likely no detectable speech or a hard language. Retry with
--language <code>(correct ISO-639-1) before declaring failure. - API key missing or rejected — surface the exact error; never fabricate a key.
- Job timed out — bump
MUAPI_POLL_TIMEOUTand retry; don't silently truncate. - Highlight ranker returned <
num_clips— return what survived dedupe with a note; don't pad with low-score filler.
Done criteria
The skill is done when:
result["shorts"]has up tonum_clipsentries, each with a workingclip_url.- The user has been shown the ranked list (score, time range, title, hook, URL).
- If
--output-jsonwas set, the file exists and parses.
If any clip URL 404s on a HEAD check, re-run just the crop stage for that highlight rather than re-running the whole pipeline.
Decide Fit First
Design Intent
How To Use It
Boundaries And Review