Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

youtube-downloader-clipperyoutube 下载剪辑器

Agent Skill

youtube-downloader-clipper 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

73,632

周安装

3,099

GitHub Stars

公开资料未说明

下载量

25,784
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install youtube-downloader-clipper

简介

使用精确的时间戳剪辑和下载特定时间范围或各种质量的完整 YouTube 视频,包括纯音频 MP3 提取。

SKILL.md

ClawHub - YouTube Video Clipper & Downloader

Extract specific sections from YouTube videos with precise timestamps. A powerful ClawHub skill that makes video clipping effortless - just provide a URL and time range.

Overview

ClawHub is designed primarily for video clipping - extracting specific time ranges from YouTube videos. Whether you need a 30-second highlight, a 5-minute tutorial segment, or any custom time range, ClawHub handles it with precision. It also supports full video downloads, audio extraction, and quality selection when needed.

Key Features

Primary: Video Clipping

  • Precise Timestamp-Based Clipping: Extract any time range (MM:SS or HH:MM:SS)
  • Quality Selection: Clip in 720p, 1080p, or best available
  • Audio Clipping: Extract audio clips as MP3
  • Fast Processing: Optimized for quick clip extraction

Secondary: Full Downloads

  • Download complete videos in various qualities
  • Extract full audio tracks
  • Custom output filenames and formats

Usage

Basic Syntax

/clawhub <youtube-url> [options]

Clipping Examples (Primary Use)

Clip a specific section

/clawhub https://youtube.com/watch?v=dQw4w9WgXcQ --clip 00:30-02:15

Extracts from 30 seconds to 2 minutes 15 seconds.

Clip with quality selection

/clawhub https://youtube.com/watch?v=dQw4w9WgXcQ --clip 01:00-03:30 --quality 1080p

Extracts a 1080p clip from 1 minute to 3 minutes 30 seconds.

Clip audio only

/clawhub https://youtube.com/watch?v=dQw4w9WgXcQ --clip 00:10-01:00 --audio-only

Extracts audio from 10 seconds to 1 minute as MP3.

Clip with custom filename

/clawhub https://youtube.com/watch?v=dQw4w9WgXcQ --clip 02:00-04:30 --output highlight.mp4

Clip tutorial section

/clawhub https://youtube.com/watch?v=tutorial123 --clip 05:20-12:45 --quality 720p

Perfect for extracting specific tutorial steps.

Clip music section

/clawhub https://youtube.com/watch?v=music456 --clip 01:15-02:30 --audio-only --output chorus.mp3

Download Examples (Secondary Use)

Download full video

/clawhub https://youtube.com/watch?v=dQw4w9WgXcQ

Download in specific quality

/clawhub https://youtube.com/watch?v=dQw4w9WgXcQ --quality 720p

Extract full audio

/clawhub https://youtube.com/watch?v=dQw4w9WgXcQ --audio-only

Available Options

OptionDescriptionExample
--clip <start>-<end>PRIMARY FEATURE - Clip from start to end time--clip 00:30-02:15
--quality <resolution>Specify quality (720p, 1080p, best)--quality 1080p
--audio-onlyExtract audio as MP3--audio-only
--output <filename>Custom output filename--output my_clip.mp4
--format <format>Output format (mp4, mkv, webm, mp3)--format mkv

Time Format for Clipping

The skill accepts flexible timestamp formats:

  • MM:SS: 01:30 (1 minute 30 seconds)
  • HH:MM:SS: 01:15:30 (1 hour 15 minutes 30 seconds)
  • M:SS: 1:30 (same as 01:30)
  • SS: 90 (converted to 01:30)

How Clipping Works

  1. You provide a YouTube URL and time range
  2. Claude parses your timestamps
  3. The skill extracts just that section using optimized methods:

- Method 1: yt-dlp's native clipping (fastest) - Method 2: ffmpeg precise cutting (fallback)

  1. Your clip is saved to the current directory

Use Cases

Content Creators

  • Extract highlights for shorts or reels
  • Clip reaction sections
  • Create compilation segments
  • Extract B-roll footage

Educators

  • Clip specific tutorial steps
  • Extract lecture segments
  • Create study materials
  • Share specific explanations

Musicians

  • Extract song sections
  • Clip audio for remixes
  • Get specific verses or choruses
  • Create practice loops

Researchers

  • Extract relevant video segments
  • Create timestamped references
  • Archive specific content
  • Analyze particular sections

Output Location

All clips and downloads are saved to your current working directory. You can specify a custom path using the --output flag.

Important Notes

  • Pure Python solution - no binary dependencies, just Python
  • Auto-installs dependencies - yt-dlp Python module installed automatically if needed
  • Clipping is optimized and fast - no need to download full videos first
  • Quality is maintained - clips preserve the original video quality
  • Copyright matters - only clip content you have rights to access
  • Flexible timestamps - use whatever format is natural for you
  • Minimal setup - Python is usually pre-installed, everything else is automatic

Technical Details

  • Language: Pure Python implementation
  • Primary Library: yt-dlp Python module (auto-installed via pip)
  • Audio Processing: ffmpeg (required for audio extraction, usually pre-installed)
  • Supported Formats: All standard video and audio formats
  • URL Support: youtube.com, youtu.be, and all YouTube URL variants
  • Installation: Fully automatic - checks and installs yt-dlp module as needed

Troubleshooting

Clip not extracting correctly

The skill will automatically try alternate methods if the first approach fails.

Invalid timestamps

Use format: MM:SS or HH:MM:SS (e.g., 01:30 or 01:15:30)

Video unavailable

Verify the YouTube URL is correct and the video is publicly accessible.

License

MIT License

Support

For issues or questions, visit the project repository or submit feedback through ClawHub.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.41%
按下载量换算18,412

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills