Loading...
Loading...
Generate realistic audio from text using ElevenLabs Text-to-Speech API. Use when the user needs to convert text to speech, create voiceovers, generate narration, or produce audio content. Triggers include "generate audio", "text to speech", "TTS", "voiceover", "narration", "ElevenLabs", "audio from text", "read this text aloud"
npx skill4agent add jechearte/skills elevenlabs-ttsELEVEN_API_KEYpip install requests --break-system-packagespython scripts/generate_audio.py "Your text here" output.mp3dq5fzy66iCKSIQWm5YMU--voicepython scripts/generate_audio.py "Hello world" output.mp3 --voice "voice_id_here"# Read script from file and generate audio
python scripts/generate_audio.py "$(cat video_script.txt)" voiceover.mp3# Intro
python scripts/generate_audio.py "Welcome to our channel" intro.mp3
# Main content
python scripts/generate_audio.py "$(cat main_script.txt)" main.mp3
# Outro
python scripts/generate_audio.py "Thanks for watching" outro.mp3# Extract text from markdown (remove formatting)
python scripts/generate_audio.py "$(cat article.md | sed 's/#//g')" article.mp3python scripts/generate_audio.py "Text" output.mp3 --voice "your_voice_id_here"python scripts/generate_audio.py "Text" output.mp3 --api-key "your_api_key"generate_audio.pyoutput.mp3intro_v2.mp3scene1_narration.mp3echo $ELEVEN_API_KEY # Should display your keypip install requests --break-system-packages