Voice Transcribe
Transcribe audio files using OpenAI's gpt-4o-mini-transcribe model with vocabulary hints and text replacements. Requires uv (https://docs.astral.sh/uv/).
clawhub install voice-transcribe端到端播客制作流水线 - 从选题到发布的完整自动化。支持录制前调研、大纲生成、节目笔记、社交媒体宣发。含国内平台适配(小宇宙/喜马拉雅/B站/小红书)。
# Install Skill (downloads SKILL.md to .claude/skills/) clawhub install podcast-production-pipeline # Then just tell Claude: "use Podcast Production Pipeline to help me..."
# Same install command — works with all SKILL.md-compatible AI coding tools clawhub install podcast-production-pipeline
This Skill is compatible with the OpenClaw standard. After installation, a SKILL.md file is auto-generated, usable by any OpenClaw-compatible AI Agent (Claude Code, Cursor, Windsurf, etc.).
cd ~/.openclaw/workspace/skills/podcast-production-pipeline/scripts
node pre-production.cjs <episode_number> "<topic>" "<guest_name>"
node pre-production.cjs 1 "AI Agent发展趋势" "Sam Altman"
node post-production.cjs <episode_number> <transcript_file>
node post-production.cjs 1 ~/podcast/episodes/ep1/transcript.txt
选题 + 嘉宾
│
▼
┌─────────────────┐
│ 前期制作 │
├─────────────────┤
│ • 嘉宾研究 │
│ • 话题研究 │
│ • 生成大纲 │
│ • 采访问题 │
└────────┬────────┘
│
▼
录制
│
▼
┌─────────────────┐
│ 后期制作 │
├─────────────────┤
│ • 节目笔记 │
│ • SEO 描述 │
│ • 社交素材 │
│ • 精华片段 │
└────────┬────────┘
│
▼
发布
podcast/episodes/ep<N>/
├── prep/ # 前期制作
│ ├── outline.md # 节目大纲
│ ├── guest-research.md # 嘉宾研究
│ └── topic-research.md # 话题研究
├── recording/ # 录制文件
│ └── audio.mp3
├── transcript.txt # 转录稿
└── publish/ # 发布素材
├── show-notes.md # 节目笔记
├── description.md # SEO 描述
├── social/ # 社交媒体
│ ├── xiaohongshu.md
│ ├── weibo.md
│ └── weixin.md
└── highlights.md # 精华片段
config/settings.json:{
"podcast_name": "你的播客名称",
"host_name": "主播名字",
"discord_channel": "DISCORD_THREAD_ID",
"storage_path": "~/podcast",
"platforms": {
"international": ["spotify", "apple", "youtube"],
"china": ["xiaoyuzhou", "ximalaya", "bilibili", "netease"]
},
"social_media": {
"international": ["twitter", "linkedin", "instagram"],
"china": ["xiaohongshu", "weixin", "weibo", "douyin"]
},
"apis": {
"tavily": "YOUR_TAVILY_KEY",
"gemini": "YOUR_GEMINI_KEY"
}
}
clawhub install podcast-production-pipeline
```bash
# 完整工作流:从选题到多平台发布
# 1. 生成选题、大纲和笔记
podcast-pipeline prepare \
--topic "播客制作的未来" \
--duration 50 \
--research-depth deep \
-o episode_materials/
# 2. 生成社交媒体宣传内容
podcast-pipeline social-media \
--episode "ep_010.md" \
--style casual \
--platforms xiaohongshu,bilibili \
-o social_posts/
# 3. 发布到所有国内平台
podcast-pipeline publish \
--audio "episode_010.mp3" \
--metadata episode_materials/metadata.json \
--cover "cover.jpg" \
--platforms ximalaya,xiaoyuzhou,bilibili,xiaohongshu \
--auto-subtitle
```Create chapters, highlights, and show notes from podcast audio or transcripts. Use when a user wants chapter markers, highlight clips, or show-note drafts without publishing or distribution actions.
clawhub install podcast-chaptering-highlights