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

podcast-downloader播客下载器

Agent Skill

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

总安装

535

周安装

23

GitHub Stars

14

下载量

188
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/crazynomad/skills --skill podcast-downloader

简介

podcast-downloader 优先使用 iTunes API 下载 Apple Podcasts 剧集,支持元数据提取与 RSS 回退。

  • 适用于保存播客音频、获取节目信息与多地区源切换等离线收听需求。
  • 自动识别 cn/us/jp 等地区代码,支持高质量音频格式与字幕下载。
  • 需合法授权内容来源,批量下载前确认版权许可与使用边界。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Apple Podcast Downloader (API Enhanced)

Download podcast episodes from Apple Podcasts using iTunes API with RSS fallback.

Description

Enhanced podcast downloader that prioritizes iTunes API for faster, more reliable downloads compared to traditional RSS parsing. Automatically detects region codes (cn/us/jp), supports multiple fallback methods, and includes rich metadata extraction.

When to Use

Use this skill when users:

  • Provide Apple Podcast URLs and want to download episodes
  • Mention "download podcast", "下载播客", "get podcast audio"
  • Want to save podcast episodes locally
  • Need podcast metadata (title, date, duration, description)

Features

  • iTunes API Priority: 3-5x faster than RSS parsing
  • Smart Region Detection: Auto-extracts country code from URL
  • Multiple Fallback Methods:

1. Direct API query (fastest) 2. List search (fast) 3. RSS feed parsing (reliable fallback)

  • Rich Metadata: Saves episode info, release date, duration, description
  • User-Agent Support: Resolves 403 errors
  • Progress Display: Real-time download progress with MB/percentage

Usage

Basic Syntax

python scripts/download_podcast.py "APPLE_PODCAST_URL" [-n COUNT] [-o OUTPUT_DIR]

Common Scenarios

Download specific episode (URL with ?i= parameter):

python scripts/download_podcast.py "https://podcasts.apple.com/cn/podcast/id1711052890?i=1000744375610"

Download latest N episodes:

python scripts/download_podcast.py "https://podcasts.apple.com/cn/podcast/id1711052890" -n 5

Download all available episodes (up to 200):

python scripts/download_podcast.py "https://podcasts.apple.com/us/podcast/id123456789"

Specify output directory:

python scripts/download_podcast.py "URL" -n 10 -o /mnt/user-data/outputs

Arguments

  • url (required): Apple Podcast URL
  • -n, --count: Number of latest episodes to download (default: all available)
  • -o, --output: Output directory (default: current directory)

Dependencies

pip install requests feedparser --break-system-packages

Output Structure

PodcastName/
├── podcast_info.json          # Podcast metadata
├── 001 - Episode Title.m4a    # Audio file
├── 001 - Episode Title.json   # Episode metadata
├── 002 - Episode Title.m4a
└── ...

Metadata Examples

podcast_info.json:

{
  "podcast_name": "Podcast Name",
  "artist": "Author Name",
  "country": "cn",
  "total_episodes": 272,
  "download_date": "2026-01-13T14:30:00"
}

Episode metadata:

{
  "title": "Episode Title",
  "release_date": "2025-01-10",
  "duration_minutes": 40,
  "description": "Episode description...",
  "audio_file": "001 - Episode Title.m4a"
}

Claude Integration

When user requests podcast download:

  1. Read skill documentation: view("/mnt/skills/user/podcast-downloader-v2/SKILL.md")
  2. Install dependencies (if needed): pip install requests feedparser --break-system-packages
  3. Execute download: python /mnt/skills/user/podcast-downloader-v2/scripts/download_podcast.py \ "USER_URL" -n COUNT -o /mnt/user-data/outputs
  4. Present files to user: present_files(["/mnt/user-data/outputs/PodcastName/..."])

How It Works

Workflow

  1. URL Parsing: Extract podcast ID, episode ID (if present), region code
  2. Data Retrieval (priority order):

- Method A: Direct API query for specific episode (fastest) - Method B: Fetch episode list and search (fast) - Method C: Parse RSS feed (fallback)

  1. Download: Stream audio with progress display, save metadata

API Endpoints

  • Query episode: https://itunes.apple.com/lookup?id={episode_id}&entity=podcastEpisode&country={country}
  • Query list: https://itunes.apple.com/lookup?id={podcast_id}&entity=podcastEpisode&country={country}&limit=200
  • Get RSS: https://itunes.apple.com/lookup?id={podcast_id}&country={country}&entity=podcast

Limitations

  • iTunes API limit: 200 episodes maximum per request
  • Only supports Apple Podcasts (not Spotify, Google Podcasts, etc.)
  • Requires internet connection
  • Audio format depends on podcast source (usually.m4a or.mp3)

Common Issues

Q: Can't find old episodes? A: iTunes API returns max 200 recent episodes. Script automatically falls back to RSS for older content.

Q: Getting 403 errors? A: User-Agent headers are included to prevent most 403 errors. If persists, may be source restriction.

Q: Which regions are supported? A: All Apple Podcasts regions (cn, us, jp, uk, etc.). Auto-detected from URL.

Example Conversation

User: "帮我下载这个播客的最新 3 集: https://podcasts.apple.com/cn/podcast/id1711052890"

Claude:

# View skill
view("/mnt/skills/user/podcast-downloader-v2/SKILL.md")

# Install dependencies
pip install requests feedparser --break-system-packages

# Download
python /mnt/skills/user/podcast-downloader-v2/scripts/download_podcast.py \
  "https://podcasts.apple.com/cn/podcast/id1711052890" \
  -n 3 \
  -o /mnt/user-data/outputs

# Present files
present_files([...])

Version History

v2.0 (Current)

  • iTunes API as primary data source
  • Auto region detection
  • Multiple fallback methods
  • User-Agent support for 403 prevention
  • Rich metadata saving
  • Improved progress display

v1.0 (Original)

  • RSS feed parsing
  • Basic download functionality

References

See /references/ directory for:

  • usage_guide.md: Detailed usage instructions and examples
  • technical_details.md: In-depth technical documentation
  • api_reference.md: iTunes API documentation

License

Personal use tool. Please respect Apple Podcasts terms of service. For personal listening and learning only.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.38%
按下载量换算67

Claude

30.23%
按下载量换算57

Cursor

19.55%
按下载量换算37

Gemini CLI

10.75%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills