Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

podcast-clipper-subscut播客 CLIpper 子剪切

Agent Skill

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

总安装

4,416

周安装

184

GitHub Stars

1

下载量

1,472
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install podcast-clipper-subscut

简介

podcast-clipper-subscut 将长视频内容切割为 TikTok、Reels 或 YouTube Shorts 格式短片。

  • 适合播客主或内容运营者二次分发节目精华片段至短视频平台扩大影响力。
  • 自动识别高光时刻并添加字幕,提升跨平台传播效果与用户参与度。
  • 输入源支持 Apple Podcasts、Spotify 链接或直接上传视频文件。
  • 输出文件保留原始画质但可能压缩时长以适应平台规范要求。

SKILL.md

name
generate-podcast-clips
description
Use this skill when the user wants to turn a long podcast, interview, webinar, or talking-head video into multiple short clips for TikTok, Reels, or YouTube Shorts. It wraps Subscut's podcast clipping API in a narrow CLI interface with explicit env requirements and predictable JSON output.
homepage
https://subscut.com/agents
metadata
version
1.1.0
clawdbot
emoji
🎙️
requires
bins
env
config
requiredEnv
optionalEnv
example
|
cliHelp
|
Options

Generate Podcast Clips

Use this skill to convert a long-form spoken video into multiple short clips through the Subscut /podcast-to-clips API.

What This Skill Does

The skill is an opinionated wrapper around the API outcome:

  • extracts up to 20 strong short clips from a long-form video
  • favors viral and high-retention spoken moments
  • adds captions with selectable styles
  • supports two render formats: dynamic (auto-reframing) and hook_frame (original frame + title card)
  • returns titles, scores, and rendered clip URLs

Think in outcomes, not transport:

  • Good framing: "Extract viral short-form content from this podcast"
  • Bad framing: "Call some video API"

When To Use

Use this skill when:

  • the input is a long podcast, interview, webinar, or talking-head video
  • the user wants growth, repurposing, shorts, reels, or TikTok content
  • the user wants minimal manual editing

Avoid this skill when:

  • the source is already short-form
  • the content is mostly non-speech
  • the user wants manual, frame-by-frame editing decisions

Do not use it as a generic video editing tool.

Input Contract

Use this compact input shape when planning or explaining the tool call:

{
  "video_url": "https://example.com/video.mp4",
  "max_clips": 5,
  "style": "viral",
  "format": "dynamic",
  "captions": true,
  "clip_duration": {
    "min": 20,
    "max": 60
  }
}

Field Reference

FieldTypeDefaultNotes
video_urlstringRequired. Any HTTP/HTTPS URL. YouTube, direct MP4, Google Drive.
max_clipsinteger5Range: 1–20. Short videos (≤3 min) are capped at 2 clips automatically.
stylestring"viral"Caption style. See styles below.
formatstring"dynamic"Render format. See formats below.
captionsbooleantrueWhether to burn in captions.
clip_duration.mininteger20Minimum clip length in seconds. Floor: 10s.
clip_duration.maxinteger60Maximum clip length in seconds. Ceiling: 60s. Must be ≥ min.

Caption Styles (style)

ValueDescription
viralBold animated-word captions (MrBeast style). Default.
beastAlias for viral.
hormoziAlias for leon. Single highlighted word, clean font.
leonSingle highlighted word, clean font.
cleanPlain white subtitles, no animation.
minimalAlias for clean.

Render Formats (format)

ValueDescription
dynamicAuto-detects split-screen vs. solo framing, reframes to 9:16. Default.
hook_framePreserves original video frame, adds a title card at the top, captions at the bottom.

Use hook_frame when the video is already vertical or the user wants the title displayed prominently. Use dynamic (default) for horizontal/landscape podcasts with one or two speakers.

Output Contract

Expect JSON in this shape:

{
  "clips": [
    {
      "video_url": "https://...",
      "title": "Why Most Founders Get This Wrong",
      "score": 0.92,
      "start": 142.5,
      "end": 198.3
    }
  ]
}

score is a 0–1 float representing clip virality confidence. Higher is better.

CLI Entry Point

Once the skill is installed, the agent runtime should invoke the bundled CLI wrapper:

npm --prefix .agents/skills/generate-podcast-clips run generate-podcast-clips -- \
  --video-url "https://example.com/podcast.mp4" \
  --max-clips 5 \
  --clip-style viral \
  --format dynamic \
  --captions true \
  --min-clip-duration 20 \
  --max-clip-duration 60

Required environment variables:

  • SUBSCUT_API_KEY or --api-key

Default base URL:

  • https://subscut.com

Install Model

This skill is meant to be published once by Subscut and then installed by users through the marketplace.

End-user flow:

  1. Install the published skill from ClawHub / OpenClaw.
  2. Set SUBSCUT_API_KEY.
  3. Let the agent call the skill when it needs to turn a long-form spoken video

into short clips.

The skill should not ask users to publish or package anything themselves.

Agent Workflow

  1. Confirm the source is a long-form spoken video.
  2. Prefer the CLI wrapper over hand-written curl.
  3. Keep the request simple unless the user asks for custom clip counts, durations, style, or format.
  4. Default format to dynamic unless the user explicitly wants a title card (hook_frame).
  5. Return the resulting clip URLs, titles, scores, and timestamps.
  6. If the API fails, surface the status and response body clearly.
  7. Keep a human in the loop before final publishing if the downstream workflow is public.

Natural-Language Triggers

Likely user intents that should map to this skill:

  • "Turn this podcast into reels"
  • "Make shorts from this interview"
  • "Repurpose my long video into clips"
  • "Find the viral moments in this podcast"
  • "Generate YouTube Shorts from this episode"
  • "Make clips with a title card at the top"
  • "Give me clean subtitle clips"
  • "Extract 10 clips from this webinar"

Notes

  • The API route is POST /podcast-to-clips.
  • style maps to the API style field. clip-style is used as the CLI flag name.
  • format controls render layout: dynamic (default) or hook_frame.
  • clip_duration.min and clip_duration.max let callers control clip length window.
  • Short videos (≤3 min) are automatically capped at 2 clips regardless of max_clips.
  • The script is executed through the skill-local npm script.
  • The skill is intentionally opinionated and keeps the parameter surface small for better agent usage.
  • This package is for installation and runtime usage, not for publisher-only deployment steps.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.84%
按下载量换算1,161

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills