askill
podcastfy-generator

podcastfy-generatorSafety 90Repository

Generate AI podcast-style audio conversations from URLs, YouTube videos, PDFs, or text topics. Creates NotebookLM-style two-host dialogues. Use when user asks to "create a podcast", "make an audio summary", "turn this article into a podcast", or wants content converted to audio discussion format.

1 stars
1.2k downloads
Updated 2/8/2026

Package Files

Loading files...
SKILL.md

Podcastfy Generator πŸŽ™οΈ

Generate AI podcast-style audio conversations from any content. Creates engaging two-host dialogues similar to Google NotebookLM's Audio Overview feature.

Capabilities

  • URLs β†’ Fetch article content, generate podcast discussion
  • YouTube β†’ Extract transcript, create audio summary
  • PDFs β†’ Parse document, synthesize key points as dialogue
  • Text/Topics β†’ Generate podcast from plain text or topic prompts
  • Multi-lingual β†’ English, German, French, Spanish (auto-detect or specify)
  • Custom Identity β†’ Name the podcast, name the hosts, pick their voices

Quick Examples

"Create a podcast about this article: https://example.com/tech-news"
"Turn this YouTube video into a podcast: https://youtube.com/watch?v=..."
"Generate a German podcast discussing quantum computing"
"Make a podcast called 'Deep Dive' with hosts Alex and Sam about this PDF"

Usage

Basic Generation

# From URL
<skill>/scripts/generate.py --url "https://example.com/article"

# From YouTube
<skill>/scripts/generate.py --url "https://youtube.com/watch?v=abc123"

# From text
<skill>/scripts/generate.py --text "Your content here..."

# From PDF
<skill>/scripts/generate.py --pdf "/path/to/document.pdf"

# Multiple sources
<skill>/scripts/generate.py --url "https://url1.com" --url "https://url2.com"

Podcast Identity

# Name the podcast
<skill>/scripts/generate.py --url "https://..." --podcast-name "Deep Dive"

# Name the hosts (they'll use each other's names in conversation)
<skill>/scripts/generate.py --url "https://..." --host-name Alex --cohost-name Sam

# No podcast name (hosts introduce topic naturally, no show branding)
<skill>/scripts/generate.py --url "https://..." --podcast-name ""

# Full customization
<skill>/scripts/generate.py --url "https://..." \
  --podcast-name "Tech Talk" --podcast-tagline "Breaking down the future" \
  --host-name Alex --cohost-name Kiki

Language Options

# Auto-detect (default)
<skill>/scripts/generate.py --url "https://example.de/artikel"

# Explicit language
<skill>/scripts/generate.py --url "https://example.com" --lang de

Supported: en (English), de (German), fr (French), es (Spanish)

TTS Provider & Voice Options

Default: OpenAI TTS (tts-1-hd with onyx + nova voices)

Optional: ElevenLabs for higher quality, more natural voices:

# Use ElevenLabs with defaults (Daniel + Alice)
<skill>/scripts/generate.py --url "https://..." --elevenlabs

# Custom voices per host
<skill>/scripts/generate.py --url "https://..." --elevenlabs \
  --host-voice Daniel --cohost-voice Alice

# OpenAI custom voices
<skill>/scripts/generate.py --url "https://..." \
  --host-voice echo --cohost-voice shimmer

OpenAI voices: alloy, echo, fable, onyx, nova, shimmer

ElevenLabs voices (premade): Roger, Sarah, Laura, Charlie, George, Callum, River, Liam, Alice, Matilda, Will, Jessica, Eric, Bella, Chris, Brian, Daniel, Lily, Adam, Bill

Browse all: https://elevenlabs.io/voice-library

All CLI Options

OptionDescriptionExample
--urlURL to process (repeatable)--url https://...
--textPlain text content--text "AI is..."
--pdfPath to PDF file--pdf report.pdf
--langOutput language--lang de
--podcast-namePodcast name (empty = none)--podcast-name "Deep Dive"
--podcast-taglinePodcast tagline--podcast-tagline "..."
--host-nameHost name (Person1)--host-name Alex
--cohost-nameCo-host name (Person2)--cohost-name Kiki
--elevenlabsUse ElevenLabs TTS--elevenlabs
--host-voiceVoice for host--host-voice Daniel
--cohost-voiceVoice for co-host--cohost-voice Alice
--output, -oOutput file path-o podcast.ogg

Output

The script outputs an OGG audio file path. Use the OpenClaw message tool to send it:

# Agent workflow
audio_path = exec("<skill>/scripts/generate.py --url 'https://...'")
message(action="send", media=audio_path, target=user_chat)

Configuration

Default podcast style is configured in <skill>/config/conversation.yaml. CLI flags override config values.

Key config options:

  • podcast_name β€” Show name (empty = content-driven intro)
  • roles_person1 / roles_person2 β€” Host role descriptions
  • text_to_speech.{provider}.default_voices β€” Default voice per provider
  • language_voices.{provider}.{Language} β€” Per-language voice overrides (applied when no --host-voice/--cohost-voice is set)
  • conversation_style β€” Style keywords (engaging, concise, etc.)
  • creativity β€” 0-1 scale (higher = more creative dialogue)

Environment Variables

VariableRequiredPurpose
OPENAI_API_KEYYesTTS audio generation (default)
GEMINI_API_KEYYesTranscript/dialogue generation
ELEVENLABS_API_KEYNoElevenLabs TTS (required for --elevenlabs)

Get your ElevenLabs API key at: https://elevenlabs.io/app/settings/api-keys

Installation

First-time setup (run once):

<skill>/scripts/install.sh

Requirements

  • ffmpeg β€” Audio format conversion
  • uv β€” Python environment management
  • Python 3.11+ β€” Runtime

Troubleshooting

"ffmpeg not found"

Install ffmpeg: brew install ffmpeg (macOS) or apt install ffmpeg (Linux)

"API key not set"

Ensure OPENAI_API_KEY and GEMINI_API_KEY are in your environment or secrets.conf

Hosts say "Quick Brief" or reference a show name

Set podcast_name: "" in config/conversation.yaml or use --podcast-name ""

Generation takes too long

Podcastfy processes content through LLM + TTS. Expect 30-90 seconds for short podcasts.

Audio quality issues

Try ElevenLabs (--elevenlabs) for more natural voices. OpenAI tts-1-hd is decent but synthetic.

Install

Download ZIP
Requires askill CLI v1.0+β–Ά

AI Quality Score

96/100Analyzed 2/11/2026

An exceptionally well-documented skill for generating AI podcasts from various sources. It features comprehensive CLI examples, clear configuration options, and thorough troubleshooting guidance.

90
100
90
98
95

Metadata

Licenseunknown
Version-
Updated2/8/2026
Publisherkesslerio

Tags

apigithub-actionsllm