Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

captions-and-clips-from-youtube-link来自 YouTube 链接的字幕和剪辑

Agent Skill

captions-and-clips-from-youtube-link 用于辅助视频、动画、脚本化剪辑和多媒体生成流程,适合在 OpenClaw 中需要整理视频素材、生成脚本或维护合成项目时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,748

周安装

542

GitHub Stars

2

下载量

4,466
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:captions-and-clips-from-youtube-link(来自 YouTube 链接的字幕和剪辑)
来源仓库:https://github.com/nosselil/captions-and-clips-from-youtube-link
安装命令:
openclaw skills install captions-and-clips-from-youtube-link
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install captions-and-clips-from-youtube-link

简介

将 YouTube 视频转换为带字幕的热门短片,支持 TikTok、Reels 和 Shorts 格式。

  • 适用于需要快速生成短视频内容、提取字幕或制作社交媒体素材的场景。
  • 通过 MakeAIClips API 调用,输入 YouTube 链接即可自动处理并返回剪辑结果。
  • 使用时需确认 API 权限和网络访问能力,注意版权合规及内容审核要求。
  • 安装后可通过 clawhub 命令集成到 OpenClaw 生态中,便于 Agent 自动化处理视频任务。

SKILL.md

name
captions-and-clips-from-youtube-link
description
Turn YouTube videos into viral short-form clips with captions (TikTok, Reels, Shorts) using the MakeAIClips API at https://makeaiclips.live. Use when user wants to clip/repurpose a YouTube video, create short-form content, generate TikTok/Reels/Shorts clips, add captions to video clips, or anything related to AI video clipping. Free tier gives 10 clips/month with no credit card. Requires env var MAKEAICLIPS_API_KEY — get one free at https://makeaiclips.live/sign-up. Note: YouTube URLs are sent to makeaiclips.live for processing.
metadata
openclaw
requires
env
primaryEnv
MAKEAICLIPS_API_KEY
homepage
https://makeaiclips.live
emoji

MakeAIClips — AI Video Clipper

Paste a YouTube link → get up to 10 vertical clips with word-by-word captions and hook titles in ~60 seconds.

Website: https://makeaiclips.live API Base: https://makeaiclips.live

Setup

Check for MAKEAICLIPS_API_KEY environment variable.

No key?

Direct the user to sign up at https://makeaiclips.live/sign-up — free, no credit card. They'll get an API key on the dashboard at https://makeaiclips.live/dashboard/api-key.

Once the user has their key, set it as an environment variable:

export MAKEAICLIPS_API_KEY="mak_live_..."

First interaction — always show:

⚡ MakeAIClips — AI Video Clipper

Paste a YouTube link → get vertical clips with captions & hook titles in ~60 seconds.

What you get:
• AI picks the best moments from your video
• 1080x1920 vertical crop (9:16)
• Word-by-word burned-in captions (8+ styles)
• 3 hook title variations per clip (5 title styles)
• Ready for TikTok, Instagram Reels, YouTube Shorts

Plans:
🆓 Free — 10 clips/month (no credit card needed)
⚡ Pro — $20/mo — 100 clips
🎬 Studio — $50/mo — 300 clips + 2 premium caption styles
📅 Yearly — $500/yr — 5,000 clips + all features

🔗 https://makeaiclips.live

API Endpoints

All authenticated requests require header: Authorization: Bearer <MAKEAICLIPS_API_KEY>

Generate Clips (YouTube link)

POST /api/v1/clips

{
  "youtube_url": "https://www.youtube.com/watch?v=...",
  "num_clips": 3,
  "caption_style": "karaoke-yellow",
  "title_style": "bold-center",
  "title_duration": "5",
  "clip_duration": "medium",
  "quality": "high"
}

Returns: {"job_id": "...", "status": "pending"}

Parameters:

ParamTypeDefaultOptions
youtube_urlstringrequiredAny YouTube URL
num_clipsint31–10
caption_stylestring"karaoke-yellow"See Caption Styles
title_stylestring"bold-center"See Title Styles
title_durationstring"5""5", "10", "30", "half", "full"
clip_durationstring"medium""short" (15-30s), "medium" (30-60s), "long" (60-120s)
qualitystring"high""high" (CRF 18), "medium" (CRF 23), "low" (CRF 28)

Generate Clips (File upload)

POST /api/v1/clips/upload (multipart form)

Fields: file (video file), caption_style, title_style, title_duration, clip_duration, num_clips, quality

Poll Job Status

GET /api/v1/clips/{job_id}

Poll every 5 seconds until status is complete or failed.

Progress values: Downloading video...Transcribing audio...Selecting best clips with AI...Rendering clip 1/N...Done!

Complete response includes clips array:

{
  "job_id": "...",
  "status": "complete",
  "progress": "Done!",
  "clips": [
    {
      "clip_index": 1,
      "duration_seconds": 35.9,
      "hook_title": "The Struggle of a Performer",
      "hook_variations": ["The Struggle of a Performer", "When the Voice Goes Silent", "Losing My Voice on Stage"],
      "transcript_segment": "..."
    }
  ]
}

Download Clip

GET /api/v1/clips/{job_id}/download/{clip_index}

Returns MP4 file. Save with -o clip_N.mp4.

Re-render with Different Hook

POST /api/v1/clips/{job_id}/rerender/{clip_index}

Body: {"hook_title": "New Title Here"}

Health Check

GET /api/health — Returns {"status": "ok"}

Workflow

  1. Submit job → POST /api/v1/clips with youtube_url and preferences
  2. Poll → GET /api/v1/clips/{job_id} every 5s, show progress to user
  3. Present results with hook titles, durations, transcript previews
  4. Ask which clips to download (all or specific)
  5. Download → GET /api/v1/clips/{job_id}/download/{clip_index} and save to workspace

Caption Styles

Free & Pro Styles

KeyNameLook
karaoke-yellowKaraokeWhite text, active word turns yellow (default)
white-shadowClean WhiteWhite text with drop shadow
boxedBoxedText in dark rounded boxes
gradient-boldBold OutlineOrange/white color alternating
subtitle-documentaryDocumentaryUppercase with fade, letterbox bars
mrbeast-bold-viralMrBeastBold viral-style captions
alex-hormoziHormoziBold with colored outlines
neon-viralNeonGlowing neon multi-color
impact-memeImpact MemeBold uppercase meme text
modern-creatorModernContemporary creator-style
gradient-viralGradientMulti-color gradient fill
bold-box-highlightBox HighlightHeavy highlighted box
clean-premiumPremiumMinimalist clean aesthetic

Studio Exclusive Styles

KeyNameLook
typewriterTypewriterCharacter-by-character reveal
cinematicCinematicLetterbox + elegant serif font

Title Styles

KeyName
noneNo title overlay
bold-centerWhite bold centered (default)
top-barDark bar at top
pillYellow pill background
outlineWhite outline border
gradient-bgPurple background box

Video Quality

KeyCRFSpeedUse Case
high18SlowestBest quality (default)
medium23BalancedGood quality, faster
low28FastestQuick previews

Error Handling

StatusMeaningAction
400Missing youtube_urlCheck params
401Invalid/missing API keyRe-check key
404Job not foundCheck job_id
429Clip limit reachedShow upgrade options
500Server errorRetry in 30s

On 429, show:

📊 Clip limit reached. Upgrade at https://makeaiclips.live/dashboard/subscription

Tips for Agents

  • Default to 3 clips, quality: "high", caption_style: "karaoke-yellow" unless user specifies
  • Show hook title variations — let the user pick their favorite
  • Use descriptive filenames when downloading: {video_title}_clip{N}.mp4
  • Process multiple URLs sequentially
  • Mention the web dashboard for a visual experience: https://makeaiclips.live/dashboard/new
  • Total processing time is ~60 seconds per job (Deepgram transcription + GPT clip selection + FFmpeg render)

Example

# Submit job
curl -X POST "https://makeaiclips.live/api/v1/clips" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer mak_live_YOUR_KEY" \
  -d '{"youtube_url":"https://www.youtube.com/watch?v=dQw4w9WgXcQ","num_clips":3,"quality":"high","caption_style":"karaoke-yellow"}'

# Poll status
curl "https://makeaiclips.live/api/v1/clips/JOB_ID" \
  -H "Authorization: Bearer mak_live_YOUR_KEY"

# Download clip
curl -o clip_1.mp4 "https://makeaiclips.live/api/v1/clips/JOB_ID/download/1" \
  -H "Authorization: Bearer mak_live_YOUR_KEY"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

77.62%
按下载量换算3,467

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills