Generate professional podcast voiceovers with conversational, warm tone (140-160 WPM). Optimized for natural, engaging delivery in multi-segment episodes.
Note: Review
PROFILE.mdin this folder for podcast-specific voice settings and delivery guidelines.
Generate professional podcast voiceovers optimized for conversational, authentic delivery using ElevenLabs AI voice cloning.
Voiceover.py (in ../src/):
Podcast.py (in ../src/):
Target WPM: 140-160 words per minute Tone: Warm, conversational, authentic Energy: Natural and engaging Pacing: Relaxed with natural pauses
Voice Profile: Configured in parent skill's voice_profiles.json (podcast profile)
Best Practices:
Example Optimized Script:
Welcome back to the show... I'm [Your Name], and today we're diving into
something I've been thinking about a lot lately.
You know how we all struggle with staying focused? Well, I've got
three simple principles that changed everything for me. And I think
they'll work for you too.
Let's start with the first one...
Avoid:
from src.Podcast import PodcastGenerator, PodcastSegment
generator = PodcastGenerator()
segments = [
PodcastSegment(
text="Welcome to the show...",
content_type="podcast"
),
PodcastSegment(
text="Today's main topic...",
content_type="podcast"
)
]
result = generator.generate_podcast(
segments=segments,
output_filename="episode-01.mp3",
transition_ms=800
)