[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-elevenlabs-sound-effects":3,"mdc--fvyzrk-key":39,"related-org-elevenlabs-sound-effects":1365,"related-repo-elevenlabs-sound-effects":1473},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":34,"sourceUrl":37,"mdContent":38},"sound-effects","generate sound effects with ElevenLabs","Generate sound effects from text descriptions using ElevenLabs. Use when creating sound effects, generating audio textures, producing ambient sounds, cinematic impacts, UI sounds, or any audio that isn't speech. Supports looping, duration control, and prompt influence tuning.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"elevenlabs","ElevenLabs","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Felevenlabs.png",[12,16,18,21],{"name":13,"slug":14,"type":15},"Creative","creative","tag",{"name":17,"slug":4,"type":15},"Sound Effects",{"name":19,"slug":20,"type":15},"Audio","audio",{"name":9,"slug":8,"type":15},374,"https:\u002F\u002Fgithub.com\u002Felevenlabs\u002Fskills","2026-04-06T18:09:39.77459","MIT",48,[28,8,29,30,31,32,33],"ai-agents","music","sfx","skills","stt","tts",{"repoUrl":23,"stars":22,"forks":26,"topics":35,"description":36},[28,8,29,30,31,32,33],"Collections of skills for building with ElevenLabs","https:\u002F\u002Fgithub.com\u002Felevenlabs\u002Fskills\u002Ftree\u002FHEAD\u002Fsound-effects","---\nname: sound-effects\ndescription: Generate sound effects from text descriptions using ElevenLabs. Use when creating sound effects, generating audio textures, producing ambient sounds, cinematic impacts, UI sounds, or any audio that isn't speech. Supports looping, duration control, and prompt influence tuning.\nlicense: MIT\ncompatibility: Requires internet access and an ElevenLabs API key (ELEVENLABS_API_KEY).\nmetadata: {\"openclaw\": {\"requires\": {\"env\": [\"ELEVENLABS_API_KEY\"]}, \"primaryEnv\": \"ELEVENLABS_API_KEY\"}}\n---\n\n# ElevenLabs Sound Effects\n\nGenerate sound effects from text descriptions — supports looping, custom duration, and prompt adherence control.\n\n> **Setup:** See [Installation Guide](references\u002Finstallation.md). For JavaScript, use `@elevenlabs\u002F*` packages only.\n\n## Quick Start\n\n### Python\n\n```python\nfrom elevenlabs import ElevenLabs\n\nclient = ElevenLabs()\n\naudio = client.text_to_sound_effects.convert(\n    text=\"Thunder rumbling in the distance with light rain\",\n)\n\nwith open(\"thunder.mp3\", \"wb\") as f:\n    for chunk in audio:\n        f.write(chunk)\n```\n\n### JavaScript\n\n```javascript\nimport { ElevenLabsClient } from \"@elevenlabs\u002Felevenlabs-js\";\nimport { createWriteStream } from \"fs\";\n\nconst client = new ElevenLabsClient();\nconst audio = await client.textToSoundEffects.convert({\n  text: \"Thunder rumbling in the distance with light rain\",\n});\naudio.pipe(createWriteStream(\"thunder.mp3\"));\n```\n\n### cURL\n\n```bash\ncurl -X POST \"https:\u002F\u002Fapi.elevenlabs.io\u002Fv1\u002Fsound-generation\" \\\n  -H \"xi-api-key: $ELEVENLABS_API_KEY\" -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"text\": \"Thunder rumbling in the distance with light rain\"}' \\\n  --output thunder.mp3\n```\n\n## Parameters\n\n| Parameter | Type | Default | Description |\n|-----------|------|---------|-------------|\n| `text` | string (required) | — | Description of the desired sound effect |\n| `model_id` | string | `eleven_text_to_sound_v2` | Model to use |\n| `duration_seconds` | number \\| null | null (auto) | Duration 0.5–30s; auto-calculated if null |\n| `prompt_influence` | number \\| null | 0.3 | How closely to follow the prompt (0–1) |\n| `loop` | boolean | false | Generate a seamlessly looping sound (v2 model only) |\n\n## Examples with Parameters\n\n```python\n# Looping ambient sound, 10 seconds\naudio = client.text_to_sound_effects.convert(\n    text=\"Gentle forest ambiance with birds chirping\",\n    duration_seconds=10.0,\n    prompt_influence=0.5,\n    loop=True,\n)\n\n# Short UI sound, high prompt adherence\naudio = client.text_to_sound_effects.convert(\n    text=\"Soft notification chime\",\n    duration_seconds=1.0,\n    prompt_influence=0.8,\n)\n```\n\n## Output Formats\n\nPass `output_format` as a query parameter (cURL) or SDK parameter:\n\n| Format | Description |\n|--------|-------------|\n| `mp3_44100_128` | MP3 44.1kHz 128kbps (default) |\n| `pcm_44100` | Raw uncompressed CD quality |\n| `opus_48000_128` | Opus 48kHz 128kbps — efficient compressed |\n| `ulaw_8000` | μ-law 8kHz — telephony |\n\nFull list: `mp3_22050_32`, `mp3_24000_48`, `mp3_44100_32`, `mp3_44100_64`, `mp3_44100_96`, `mp3_44100_128`, `mp3_44100_192`, `pcm_8000`, `pcm_16000`, `pcm_22050`, `pcm_24000`, `pcm_32000`, `pcm_44100`, `pcm_48000`, `ulaw_8000`, `alaw_8000`, `opus_48000_32`, `opus_48000_64`, `opus_48000_96`, `opus_48000_128`, `opus_48000_192`.\n\n## Prompt Tips\n\n- Be specific: \"Heavy rain on a tin roof\" > \"Rain\"\n- Combine elements: \"Footsteps on gravel with distant traffic\"\n- Specify style: \"Cinematic braam, horror\" or \"8-bit retro jump sound\"\n- Mention mood\u002Fcontext: \"Eerie wind howling through an abandoned building\"\n\n## Error Handling\n\n```python\ntry:\n    audio = client.text_to_sound_effects.convert(text=\"Explosion\")\nexcept Exception as e:\n    print(f\"API error: {e}\")\n```\n\nCommon errors:\n- **401**: Invalid API key\n- **422**: Invalid parameters (check duration range, prompt_influence range)\n- **429**: Rate limit exceeded\n\n## References\n\n- [Installation Guide](references\u002Finstallation.md)\n",{"data":40,"body":47},{"name":4,"description":6,"license":25,"compatibility":41,"metadata":42},"Requires internet access and an ElevenLabs API key (ELEVENLABS_API_KEY).",{"openclaw":43},{"requires":44,"primaryEnv":46},{"env":45},[46],"ELEVENLABS_API_KEY",{"type":48,"children":49},"root",[50,59,65,98,105,112,222,228,529,535,668,674,849,855,972,978,991,1080,1229,1235,1260,1266,1305,1310,1343,1349,1359],{"type":51,"tag":52,"props":53,"children":55},"element","h1",{"id":54},"elevenlabs-sound-effects",[56],{"type":57,"value":58},"text","ElevenLabs Sound Effects",{"type":51,"tag":60,"props":61,"children":62},"p",{},[63],{"type":57,"value":64},"Generate sound effects from text descriptions — supports looping, custom duration, and prompt adherence control.",{"type":51,"tag":66,"props":67,"children":68},"blockquote",{},[69],{"type":51,"tag":60,"props":70,"children":71},{},[72,78,80,87,89,96],{"type":51,"tag":73,"props":74,"children":75},"strong",{},[76],{"type":57,"value":77},"Setup:",{"type":57,"value":79}," See ",{"type":51,"tag":81,"props":82,"children":84},"a",{"href":83},"references\u002Finstallation.md",[85],{"type":57,"value":86},"Installation Guide",{"type":57,"value":88},". For JavaScript, use ",{"type":51,"tag":90,"props":91,"children":93},"code",{"className":92},[],[94],{"type":57,"value":95},"@elevenlabs\u002F*",{"type":57,"value":97}," packages only.",{"type":51,"tag":99,"props":100,"children":102},"h2",{"id":101},"quick-start",[103],{"type":57,"value":104},"Quick Start",{"type":51,"tag":106,"props":107,"children":109},"h3",{"id":108},"python",[110],{"type":57,"value":111},"Python",{"type":51,"tag":113,"props":114,"children":118},"pre",{"className":115,"code":116,"language":108,"meta":117,"style":117},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","from elevenlabs import ElevenLabs\n\nclient = ElevenLabs()\n\naudio = client.text_to_sound_effects.convert(\n    text=\"Thunder rumbling in the distance with light rain\",\n)\n\nwith open(\"thunder.mp3\", \"wb\") as f:\n    for chunk in audio:\n        f.write(chunk)\n","",[119],{"type":51,"tag":90,"props":120,"children":121},{"__ignoreMap":117},[122,133,143,152,160,169,178,187,195,204,213],{"type":51,"tag":123,"props":124,"children":127},"span",{"class":125,"line":126},"line",1,[128],{"type":51,"tag":123,"props":129,"children":130},{},[131],{"type":57,"value":132},"from elevenlabs import ElevenLabs\n",{"type":51,"tag":123,"props":134,"children":136},{"class":125,"line":135},2,[137],{"type":51,"tag":123,"props":138,"children":140},{"emptyLinePlaceholder":139},true,[141],{"type":57,"value":142},"\n",{"type":51,"tag":123,"props":144,"children":146},{"class":125,"line":145},3,[147],{"type":51,"tag":123,"props":148,"children":149},{},[150],{"type":57,"value":151},"client = ElevenLabs()\n",{"type":51,"tag":123,"props":153,"children":155},{"class":125,"line":154},4,[156],{"type":51,"tag":123,"props":157,"children":158},{"emptyLinePlaceholder":139},[159],{"type":57,"value":142},{"type":51,"tag":123,"props":161,"children":163},{"class":125,"line":162},5,[164],{"type":51,"tag":123,"props":165,"children":166},{},[167],{"type":57,"value":168},"audio = client.text_to_sound_effects.convert(\n",{"type":51,"tag":123,"props":170,"children":172},{"class":125,"line":171},6,[173],{"type":51,"tag":123,"props":174,"children":175},{},[176],{"type":57,"value":177},"    text=\"Thunder rumbling in the distance with light rain\",\n",{"type":51,"tag":123,"props":179,"children":181},{"class":125,"line":180},7,[182],{"type":51,"tag":123,"props":183,"children":184},{},[185],{"type":57,"value":186},")\n",{"type":51,"tag":123,"props":188,"children":190},{"class":125,"line":189},8,[191],{"type":51,"tag":123,"props":192,"children":193},{"emptyLinePlaceholder":139},[194],{"type":57,"value":142},{"type":51,"tag":123,"props":196,"children":198},{"class":125,"line":197},9,[199],{"type":51,"tag":123,"props":200,"children":201},{},[202],{"type":57,"value":203},"with open(\"thunder.mp3\", \"wb\") as f:\n",{"type":51,"tag":123,"props":205,"children":207},{"class":125,"line":206},10,[208],{"type":51,"tag":123,"props":209,"children":210},{},[211],{"type":57,"value":212},"    for chunk in audio:\n",{"type":51,"tag":123,"props":214,"children":216},{"class":125,"line":215},11,[217],{"type":51,"tag":123,"props":218,"children":219},{},[220],{"type":57,"value":221},"        f.write(chunk)\n",{"type":51,"tag":106,"props":223,"children":225},{"id":224},"javascript",[226],{"type":57,"value":227},"JavaScript",{"type":51,"tag":113,"props":229,"children":232},{"className":230,"code":231,"language":224,"meta":117,"style":117},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { ElevenLabsClient } from \"@elevenlabs\u002Felevenlabs-js\";\nimport { createWriteStream } from \"fs\";\n\nconst client = new ElevenLabsClient();\nconst audio = await client.textToSoundEffects.convert({\n  text: \"Thunder rumbling in the distance with light rain\",\n});\naudio.pipe(createWriteStream(\"thunder.mp3\"));\n",[233],{"type":51,"tag":90,"props":234,"children":235},{"__ignoreMap":117},[236,288,329,336,374,429,461,478],{"type":51,"tag":123,"props":237,"children":238},{"class":125,"line":126},[239,245,251,257,262,267,272,278,283],{"type":51,"tag":123,"props":240,"children":242},{"style":241},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[243],{"type":57,"value":244},"import",{"type":51,"tag":123,"props":246,"children":248},{"style":247},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[249],{"type":57,"value":250}," {",{"type":51,"tag":123,"props":252,"children":254},{"style":253},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[255],{"type":57,"value":256}," ElevenLabsClient",{"type":51,"tag":123,"props":258,"children":259},{"style":247},[260],{"type":57,"value":261}," }",{"type":51,"tag":123,"props":263,"children":264},{"style":241},[265],{"type":57,"value":266}," from",{"type":51,"tag":123,"props":268,"children":269},{"style":247},[270],{"type":57,"value":271}," \"",{"type":51,"tag":123,"props":273,"children":275},{"style":274},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[276],{"type":57,"value":277},"@elevenlabs\u002Felevenlabs-js",{"type":51,"tag":123,"props":279,"children":280},{"style":247},[281],{"type":57,"value":282},"\"",{"type":51,"tag":123,"props":284,"children":285},{"style":247},[286],{"type":57,"value":287},";\n",{"type":51,"tag":123,"props":289,"children":290},{"class":125,"line":135},[291,295,299,304,308,312,316,321,325],{"type":51,"tag":123,"props":292,"children":293},{"style":241},[294],{"type":57,"value":244},{"type":51,"tag":123,"props":296,"children":297},{"style":247},[298],{"type":57,"value":250},{"type":51,"tag":123,"props":300,"children":301},{"style":253},[302],{"type":57,"value":303}," createWriteStream",{"type":51,"tag":123,"props":305,"children":306},{"style":247},[307],{"type":57,"value":261},{"type":51,"tag":123,"props":309,"children":310},{"style":241},[311],{"type":57,"value":266},{"type":51,"tag":123,"props":313,"children":314},{"style":247},[315],{"type":57,"value":271},{"type":51,"tag":123,"props":317,"children":318},{"style":274},[319],{"type":57,"value":320},"fs",{"type":51,"tag":123,"props":322,"children":323},{"style":247},[324],{"type":57,"value":282},{"type":51,"tag":123,"props":326,"children":327},{"style":247},[328],{"type":57,"value":287},{"type":51,"tag":123,"props":330,"children":331},{"class":125,"line":145},[332],{"type":51,"tag":123,"props":333,"children":334},{"emptyLinePlaceholder":139},[335],{"type":57,"value":142},{"type":51,"tag":123,"props":337,"children":338},{"class":125,"line":154},[339,345,350,355,360,365,370],{"type":51,"tag":123,"props":340,"children":342},{"style":341},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[343],{"type":57,"value":344},"const",{"type":51,"tag":123,"props":346,"children":347},{"style":253},[348],{"type":57,"value":349}," client ",{"type":51,"tag":123,"props":351,"children":352},{"style":247},[353],{"type":57,"value":354},"=",{"type":51,"tag":123,"props":356,"children":357},{"style":247},[358],{"type":57,"value":359}," new",{"type":51,"tag":123,"props":361,"children":363},{"style":362},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[364],{"type":57,"value":256},{"type":51,"tag":123,"props":366,"children":367},{"style":253},[368],{"type":57,"value":369},"()",{"type":51,"tag":123,"props":371,"children":372},{"style":247},[373],{"type":57,"value":287},{"type":51,"tag":123,"props":375,"children":376},{"class":125,"line":162},[377,381,386,390,395,400,405,410,414,419,424],{"type":51,"tag":123,"props":378,"children":379},{"style":341},[380],{"type":57,"value":344},{"type":51,"tag":123,"props":382,"children":383},{"style":253},[384],{"type":57,"value":385}," audio ",{"type":51,"tag":123,"props":387,"children":388},{"style":247},[389],{"type":57,"value":354},{"type":51,"tag":123,"props":391,"children":392},{"style":241},[393],{"type":57,"value":394}," await",{"type":51,"tag":123,"props":396,"children":397},{"style":253},[398],{"type":57,"value":399}," client",{"type":51,"tag":123,"props":401,"children":402},{"style":247},[403],{"type":57,"value":404},".",{"type":51,"tag":123,"props":406,"children":407},{"style":253},[408],{"type":57,"value":409},"textToSoundEffects",{"type":51,"tag":123,"props":411,"children":412},{"style":247},[413],{"type":57,"value":404},{"type":51,"tag":123,"props":415,"children":416},{"style":362},[417],{"type":57,"value":418},"convert",{"type":51,"tag":123,"props":420,"children":421},{"style":253},[422],{"type":57,"value":423},"(",{"type":51,"tag":123,"props":425,"children":426},{"style":247},[427],{"type":57,"value":428},"{\n",{"type":51,"tag":123,"props":430,"children":431},{"class":125,"line":171},[432,438,443,447,452,456],{"type":51,"tag":123,"props":433,"children":435},{"style":434},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[436],{"type":57,"value":437},"  text",{"type":51,"tag":123,"props":439,"children":440},{"style":247},[441],{"type":57,"value":442},":",{"type":51,"tag":123,"props":444,"children":445},{"style":247},[446],{"type":57,"value":271},{"type":51,"tag":123,"props":448,"children":449},{"style":274},[450],{"type":57,"value":451},"Thunder rumbling in the distance with light rain",{"type":51,"tag":123,"props":453,"children":454},{"style":247},[455],{"type":57,"value":282},{"type":51,"tag":123,"props":457,"children":458},{"style":247},[459],{"type":57,"value":460},",\n",{"type":51,"tag":123,"props":462,"children":463},{"class":125,"line":180},[464,469,474],{"type":51,"tag":123,"props":465,"children":466},{"style":247},[467],{"type":57,"value":468},"}",{"type":51,"tag":123,"props":470,"children":471},{"style":253},[472],{"type":57,"value":473},")",{"type":51,"tag":123,"props":475,"children":476},{"style":247},[477],{"type":57,"value":287},{"type":51,"tag":123,"props":479,"children":480},{"class":125,"line":189},[481,485,489,494,498,503,507,511,516,520,525],{"type":51,"tag":123,"props":482,"children":483},{"style":253},[484],{"type":57,"value":20},{"type":51,"tag":123,"props":486,"children":487},{"style":247},[488],{"type":57,"value":404},{"type":51,"tag":123,"props":490,"children":491},{"style":362},[492],{"type":57,"value":493},"pipe",{"type":51,"tag":123,"props":495,"children":496},{"style":253},[497],{"type":57,"value":423},{"type":51,"tag":123,"props":499,"children":500},{"style":362},[501],{"type":57,"value":502},"createWriteStream",{"type":51,"tag":123,"props":504,"children":505},{"style":253},[506],{"type":57,"value":423},{"type":51,"tag":123,"props":508,"children":509},{"style":247},[510],{"type":57,"value":282},{"type":51,"tag":123,"props":512,"children":513},{"style":274},[514],{"type":57,"value":515},"thunder.mp3",{"type":51,"tag":123,"props":517,"children":518},{"style":247},[519],{"type":57,"value":282},{"type":51,"tag":123,"props":521,"children":522},{"style":253},[523],{"type":57,"value":524},"))",{"type":51,"tag":123,"props":526,"children":527},{"style":247},[528],{"type":57,"value":287},{"type":51,"tag":106,"props":530,"children":532},{"id":531},"curl",[533],{"type":57,"value":534},"cURL",{"type":51,"tag":113,"props":536,"children":540},{"className":537,"code":538,"language":539,"meta":117,"style":117},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -X POST \"https:\u002F\u002Fapi.elevenlabs.io\u002Fv1\u002Fsound-generation\" \\\n  -H \"xi-api-key: $ELEVENLABS_API_KEY\" -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"text\": \"Thunder rumbling in the distance with light rain\"}' \\\n  --output thunder.mp3\n","bash",[541],{"type":51,"tag":90,"props":542,"children":543},{"__ignoreMap":117},[544,580,628,655],{"type":51,"tag":123,"props":545,"children":546},{"class":125,"line":126},[547,552,557,562,566,571,575],{"type":51,"tag":123,"props":548,"children":550},{"style":549},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[551],{"type":57,"value":531},{"type":51,"tag":123,"props":553,"children":554},{"style":274},[555],{"type":57,"value":556}," -X",{"type":51,"tag":123,"props":558,"children":559},{"style":274},[560],{"type":57,"value":561}," POST",{"type":51,"tag":123,"props":563,"children":564},{"style":247},[565],{"type":57,"value":271},{"type":51,"tag":123,"props":567,"children":568},{"style":274},[569],{"type":57,"value":570},"https:\u002F\u002Fapi.elevenlabs.io\u002Fv1\u002Fsound-generation",{"type":51,"tag":123,"props":572,"children":573},{"style":247},[574],{"type":57,"value":282},{"type":51,"tag":123,"props":576,"children":577},{"style":253},[578],{"type":57,"value":579}," \\\n",{"type":51,"tag":123,"props":581,"children":582},{"class":125,"line":135},[583,588,592,597,602,606,611,615,620,624],{"type":51,"tag":123,"props":584,"children":585},{"style":274},[586],{"type":57,"value":587},"  -H",{"type":51,"tag":123,"props":589,"children":590},{"style":247},[591],{"type":57,"value":271},{"type":51,"tag":123,"props":593,"children":594},{"style":274},[595],{"type":57,"value":596},"xi-api-key: ",{"type":51,"tag":123,"props":598,"children":599},{"style":253},[600],{"type":57,"value":601},"$ELEVENLABS_API_KEY",{"type":51,"tag":123,"props":603,"children":604},{"style":247},[605],{"type":57,"value":282},{"type":51,"tag":123,"props":607,"children":608},{"style":274},[609],{"type":57,"value":610}," -H",{"type":51,"tag":123,"props":612,"children":613},{"style":247},[614],{"type":57,"value":271},{"type":51,"tag":123,"props":616,"children":617},{"style":274},[618],{"type":57,"value":619},"Content-Type: application\u002Fjson",{"type":51,"tag":123,"props":621,"children":622},{"style":247},[623],{"type":57,"value":282},{"type":51,"tag":123,"props":625,"children":626},{"style":253},[627],{"type":57,"value":579},{"type":51,"tag":123,"props":629,"children":630},{"class":125,"line":145},[631,636,641,646,651],{"type":51,"tag":123,"props":632,"children":633},{"style":274},[634],{"type":57,"value":635},"  -d",{"type":51,"tag":123,"props":637,"children":638},{"style":247},[639],{"type":57,"value":640}," '",{"type":51,"tag":123,"props":642,"children":643},{"style":274},[644],{"type":57,"value":645},"{\"text\": \"Thunder rumbling in the distance with light rain\"}",{"type":51,"tag":123,"props":647,"children":648},{"style":247},[649],{"type":57,"value":650},"'",{"type":51,"tag":123,"props":652,"children":653},{"style":253},[654],{"type":57,"value":579},{"type":51,"tag":123,"props":656,"children":657},{"class":125,"line":154},[658,663],{"type":51,"tag":123,"props":659,"children":660},{"style":274},[661],{"type":57,"value":662},"  --output",{"type":51,"tag":123,"props":664,"children":665},{"style":274},[666],{"type":57,"value":667}," thunder.mp3\n",{"type":51,"tag":99,"props":669,"children":671},{"id":670},"parameters",[672],{"type":57,"value":673},"Parameters",{"type":51,"tag":675,"props":676,"children":677},"table",{},[678,707],{"type":51,"tag":679,"props":680,"children":681},"thead",{},[682],{"type":51,"tag":683,"props":684,"children":685},"tr",{},[686,692,697,702],{"type":51,"tag":687,"props":688,"children":689},"th",{},[690],{"type":57,"value":691},"Parameter",{"type":51,"tag":687,"props":693,"children":694},{},[695],{"type":57,"value":696},"Type",{"type":51,"tag":687,"props":698,"children":699},{},[700],{"type":57,"value":701},"Default",{"type":51,"tag":687,"props":703,"children":704},{},[705],{"type":57,"value":706},"Description",{"type":51,"tag":708,"props":709,"children":710},"tbody",{},[711,738,769,796,822],{"type":51,"tag":683,"props":712,"children":713},{},[714,723,728,733],{"type":51,"tag":715,"props":716,"children":717},"td",{},[718],{"type":51,"tag":90,"props":719,"children":721},{"className":720},[],[722],{"type":57,"value":57},{"type":51,"tag":715,"props":724,"children":725},{},[726],{"type":57,"value":727},"string (required)",{"type":51,"tag":715,"props":729,"children":730},{},[731],{"type":57,"value":732},"—",{"type":51,"tag":715,"props":734,"children":735},{},[736],{"type":57,"value":737},"Description of the desired sound effect",{"type":51,"tag":683,"props":739,"children":740},{},[741,750,755,764],{"type":51,"tag":715,"props":742,"children":743},{},[744],{"type":51,"tag":90,"props":745,"children":747},{"className":746},[],[748],{"type":57,"value":749},"model_id",{"type":51,"tag":715,"props":751,"children":752},{},[753],{"type":57,"value":754},"string",{"type":51,"tag":715,"props":756,"children":757},{},[758],{"type":51,"tag":90,"props":759,"children":761},{"className":760},[],[762],{"type":57,"value":763},"eleven_text_to_sound_v2",{"type":51,"tag":715,"props":765,"children":766},{},[767],{"type":57,"value":768},"Model to use",{"type":51,"tag":683,"props":770,"children":771},{},[772,781,786,791],{"type":51,"tag":715,"props":773,"children":774},{},[775],{"type":51,"tag":90,"props":776,"children":778},{"className":777},[],[779],{"type":57,"value":780},"duration_seconds",{"type":51,"tag":715,"props":782,"children":783},{},[784],{"type":57,"value":785},"number | null",{"type":51,"tag":715,"props":787,"children":788},{},[789],{"type":57,"value":790},"null (auto)",{"type":51,"tag":715,"props":792,"children":793},{},[794],{"type":57,"value":795},"Duration 0.5–30s; auto-calculated if null",{"type":51,"tag":683,"props":797,"children":798},{},[799,808,812,817],{"type":51,"tag":715,"props":800,"children":801},{},[802],{"type":51,"tag":90,"props":803,"children":805},{"className":804},[],[806],{"type":57,"value":807},"prompt_influence",{"type":51,"tag":715,"props":809,"children":810},{},[811],{"type":57,"value":785},{"type":51,"tag":715,"props":813,"children":814},{},[815],{"type":57,"value":816},"0.3",{"type":51,"tag":715,"props":818,"children":819},{},[820],{"type":57,"value":821},"How closely to follow the prompt (0–1)",{"type":51,"tag":683,"props":823,"children":824},{},[825,834,839,844],{"type":51,"tag":715,"props":826,"children":827},{},[828],{"type":51,"tag":90,"props":829,"children":831},{"className":830},[],[832],{"type":57,"value":833},"loop",{"type":51,"tag":715,"props":835,"children":836},{},[837],{"type":57,"value":838},"boolean",{"type":51,"tag":715,"props":840,"children":841},{},[842],{"type":57,"value":843},"false",{"type":51,"tag":715,"props":845,"children":846},{},[847],{"type":57,"value":848},"Generate a seamlessly looping sound (v2 model only)",{"type":51,"tag":99,"props":850,"children":852},{"id":851},"examples-with-parameters",[853],{"type":57,"value":854},"Examples with Parameters",{"type":51,"tag":113,"props":856,"children":858},{"className":115,"code":857,"language":108,"meta":117,"style":117},"# Looping ambient sound, 10 seconds\naudio = client.text_to_sound_effects.convert(\n    text=\"Gentle forest ambiance with birds chirping\",\n    duration_seconds=10.0,\n    prompt_influence=0.5,\n    loop=True,\n)\n\n# Short UI sound, high prompt adherence\naudio = client.text_to_sound_effects.convert(\n    text=\"Soft notification chime\",\n    duration_seconds=1.0,\n    prompt_influence=0.8,\n)\n",[859],{"type":51,"tag":90,"props":860,"children":861},{"__ignoreMap":117},[862,870,877,885,893,901,909,916,923,931,938,946,955,964],{"type":51,"tag":123,"props":863,"children":864},{"class":125,"line":126},[865],{"type":51,"tag":123,"props":866,"children":867},{},[868],{"type":57,"value":869},"# Looping ambient sound, 10 seconds\n",{"type":51,"tag":123,"props":871,"children":872},{"class":125,"line":135},[873],{"type":51,"tag":123,"props":874,"children":875},{},[876],{"type":57,"value":168},{"type":51,"tag":123,"props":878,"children":879},{"class":125,"line":145},[880],{"type":51,"tag":123,"props":881,"children":882},{},[883],{"type":57,"value":884},"    text=\"Gentle forest ambiance with birds chirping\",\n",{"type":51,"tag":123,"props":886,"children":887},{"class":125,"line":154},[888],{"type":51,"tag":123,"props":889,"children":890},{},[891],{"type":57,"value":892},"    duration_seconds=10.0,\n",{"type":51,"tag":123,"props":894,"children":895},{"class":125,"line":162},[896],{"type":51,"tag":123,"props":897,"children":898},{},[899],{"type":57,"value":900},"    prompt_influence=0.5,\n",{"type":51,"tag":123,"props":902,"children":903},{"class":125,"line":171},[904],{"type":51,"tag":123,"props":905,"children":906},{},[907],{"type":57,"value":908},"    loop=True,\n",{"type":51,"tag":123,"props":910,"children":911},{"class":125,"line":180},[912],{"type":51,"tag":123,"props":913,"children":914},{},[915],{"type":57,"value":186},{"type":51,"tag":123,"props":917,"children":918},{"class":125,"line":189},[919],{"type":51,"tag":123,"props":920,"children":921},{"emptyLinePlaceholder":139},[922],{"type":57,"value":142},{"type":51,"tag":123,"props":924,"children":925},{"class":125,"line":197},[926],{"type":51,"tag":123,"props":927,"children":928},{},[929],{"type":57,"value":930},"# Short UI sound, high prompt adherence\n",{"type":51,"tag":123,"props":932,"children":933},{"class":125,"line":206},[934],{"type":51,"tag":123,"props":935,"children":936},{},[937],{"type":57,"value":168},{"type":51,"tag":123,"props":939,"children":940},{"class":125,"line":215},[941],{"type":51,"tag":123,"props":942,"children":943},{},[944],{"type":57,"value":945},"    text=\"Soft notification chime\",\n",{"type":51,"tag":123,"props":947,"children":949},{"class":125,"line":948},12,[950],{"type":51,"tag":123,"props":951,"children":952},{},[953],{"type":57,"value":954},"    duration_seconds=1.0,\n",{"type":51,"tag":123,"props":956,"children":958},{"class":125,"line":957},13,[959],{"type":51,"tag":123,"props":960,"children":961},{},[962],{"type":57,"value":963},"    prompt_influence=0.8,\n",{"type":51,"tag":123,"props":965,"children":967},{"class":125,"line":966},14,[968],{"type":51,"tag":123,"props":969,"children":970},{},[971],{"type":57,"value":186},{"type":51,"tag":99,"props":973,"children":975},{"id":974},"output-formats",[976],{"type":57,"value":977},"Output Formats",{"type":51,"tag":60,"props":979,"children":980},{},[981,983,989],{"type":57,"value":982},"Pass ",{"type":51,"tag":90,"props":984,"children":986},{"className":985},[],[987],{"type":57,"value":988},"output_format",{"type":57,"value":990}," as a query parameter (cURL) or SDK parameter:",{"type":51,"tag":675,"props":992,"children":993},{},[994,1009],{"type":51,"tag":679,"props":995,"children":996},{},[997],{"type":51,"tag":683,"props":998,"children":999},{},[1000,1005],{"type":51,"tag":687,"props":1001,"children":1002},{},[1003],{"type":57,"value":1004},"Format",{"type":51,"tag":687,"props":1006,"children":1007},{},[1008],{"type":57,"value":706},{"type":51,"tag":708,"props":1010,"children":1011},{},[1012,1029,1046,1063],{"type":51,"tag":683,"props":1013,"children":1014},{},[1015,1024],{"type":51,"tag":715,"props":1016,"children":1017},{},[1018],{"type":51,"tag":90,"props":1019,"children":1021},{"className":1020},[],[1022],{"type":57,"value":1023},"mp3_44100_128",{"type":51,"tag":715,"props":1025,"children":1026},{},[1027],{"type":57,"value":1028},"MP3 44.1kHz 128kbps (default)",{"type":51,"tag":683,"props":1030,"children":1031},{},[1032,1041],{"type":51,"tag":715,"props":1033,"children":1034},{},[1035],{"type":51,"tag":90,"props":1036,"children":1038},{"className":1037},[],[1039],{"type":57,"value":1040},"pcm_44100",{"type":51,"tag":715,"props":1042,"children":1043},{},[1044],{"type":57,"value":1045},"Raw uncompressed CD quality",{"type":51,"tag":683,"props":1047,"children":1048},{},[1049,1058],{"type":51,"tag":715,"props":1050,"children":1051},{},[1052],{"type":51,"tag":90,"props":1053,"children":1055},{"className":1054},[],[1056],{"type":57,"value":1057},"opus_48000_128",{"type":51,"tag":715,"props":1059,"children":1060},{},[1061],{"type":57,"value":1062},"Opus 48kHz 128kbps — efficient compressed",{"type":51,"tag":683,"props":1064,"children":1065},{},[1066,1075],{"type":51,"tag":715,"props":1067,"children":1068},{},[1069],{"type":51,"tag":90,"props":1070,"children":1072},{"className":1071},[],[1073],{"type":57,"value":1074},"ulaw_8000",{"type":51,"tag":715,"props":1076,"children":1077},{},[1078],{"type":57,"value":1079},"μ-law 8kHz — telephony",{"type":51,"tag":60,"props":1081,"children":1082},{},[1083,1085,1091,1093,1099,1100,1106,1107,1113,1114,1120,1121,1126,1127,1133,1134,1140,1141,1147,1148,1154,1155,1161,1162,1168,1169,1174,1175,1181,1182,1187,1188,1194,1195,1201,1202,1208,1209,1215,1216,1221,1222,1228],{"type":57,"value":1084},"Full list: ",{"type":51,"tag":90,"props":1086,"children":1088},{"className":1087},[],[1089],{"type":57,"value":1090},"mp3_22050_32",{"type":57,"value":1092},", ",{"type":51,"tag":90,"props":1094,"children":1096},{"className":1095},[],[1097],{"type":57,"value":1098},"mp3_24000_48",{"type":57,"value":1092},{"type":51,"tag":90,"props":1101,"children":1103},{"className":1102},[],[1104],{"type":57,"value":1105},"mp3_44100_32",{"type":57,"value":1092},{"type":51,"tag":90,"props":1108,"children":1110},{"className":1109},[],[1111],{"type":57,"value":1112},"mp3_44100_64",{"type":57,"value":1092},{"type":51,"tag":90,"props":1115,"children":1117},{"className":1116},[],[1118],{"type":57,"value":1119},"mp3_44100_96",{"type":57,"value":1092},{"type":51,"tag":90,"props":1122,"children":1124},{"className":1123},[],[1125],{"type":57,"value":1023},{"type":57,"value":1092},{"type":51,"tag":90,"props":1128,"children":1130},{"className":1129},[],[1131],{"type":57,"value":1132},"mp3_44100_192",{"type":57,"value":1092},{"type":51,"tag":90,"props":1135,"children":1137},{"className":1136},[],[1138],{"type":57,"value":1139},"pcm_8000",{"type":57,"value":1092},{"type":51,"tag":90,"props":1142,"children":1144},{"className":1143},[],[1145],{"type":57,"value":1146},"pcm_16000",{"type":57,"value":1092},{"type":51,"tag":90,"props":1149,"children":1151},{"className":1150},[],[1152],{"type":57,"value":1153},"pcm_22050",{"type":57,"value":1092},{"type":51,"tag":90,"props":1156,"children":1158},{"className":1157},[],[1159],{"type":57,"value":1160},"pcm_24000",{"type":57,"value":1092},{"type":51,"tag":90,"props":1163,"children":1165},{"className":1164},[],[1166],{"type":57,"value":1167},"pcm_32000",{"type":57,"value":1092},{"type":51,"tag":90,"props":1170,"children":1172},{"className":1171},[],[1173],{"type":57,"value":1040},{"type":57,"value":1092},{"type":51,"tag":90,"props":1176,"children":1178},{"className":1177},[],[1179],{"type":57,"value":1180},"pcm_48000",{"type":57,"value":1092},{"type":51,"tag":90,"props":1183,"children":1185},{"className":1184},[],[1186],{"type":57,"value":1074},{"type":57,"value":1092},{"type":51,"tag":90,"props":1189,"children":1191},{"className":1190},[],[1192],{"type":57,"value":1193},"alaw_8000",{"type":57,"value":1092},{"type":51,"tag":90,"props":1196,"children":1198},{"className":1197},[],[1199],{"type":57,"value":1200},"opus_48000_32",{"type":57,"value":1092},{"type":51,"tag":90,"props":1203,"children":1205},{"className":1204},[],[1206],{"type":57,"value":1207},"opus_48000_64",{"type":57,"value":1092},{"type":51,"tag":90,"props":1210,"children":1212},{"className":1211},[],[1213],{"type":57,"value":1214},"opus_48000_96",{"type":57,"value":1092},{"type":51,"tag":90,"props":1217,"children":1219},{"className":1218},[],[1220],{"type":57,"value":1057},{"type":57,"value":1092},{"type":51,"tag":90,"props":1223,"children":1225},{"className":1224},[],[1226],{"type":57,"value":1227},"opus_48000_192",{"type":57,"value":404},{"type":51,"tag":99,"props":1230,"children":1232},{"id":1231},"prompt-tips",[1233],{"type":57,"value":1234},"Prompt Tips",{"type":51,"tag":1236,"props":1237,"children":1238},"ul",{},[1239,1245,1250,1255],{"type":51,"tag":1240,"props":1241,"children":1242},"li",{},[1243],{"type":57,"value":1244},"Be specific: \"Heavy rain on a tin roof\" > \"Rain\"",{"type":51,"tag":1240,"props":1246,"children":1247},{},[1248],{"type":57,"value":1249},"Combine elements: \"Footsteps on gravel with distant traffic\"",{"type":51,"tag":1240,"props":1251,"children":1252},{},[1253],{"type":57,"value":1254},"Specify style: \"Cinematic braam, horror\" or \"8-bit retro jump sound\"",{"type":51,"tag":1240,"props":1256,"children":1257},{},[1258],{"type":57,"value":1259},"Mention mood\u002Fcontext: \"Eerie wind howling through an abandoned building\"",{"type":51,"tag":99,"props":1261,"children":1263},{"id":1262},"error-handling",[1264],{"type":57,"value":1265},"Error Handling",{"type":51,"tag":113,"props":1267,"children":1269},{"className":115,"code":1268,"language":108,"meta":117,"style":117},"try:\n    audio = client.text_to_sound_effects.convert(text=\"Explosion\")\nexcept Exception as e:\n    print(f\"API error: {e}\")\n",[1270],{"type":51,"tag":90,"props":1271,"children":1272},{"__ignoreMap":117},[1273,1281,1289,1297],{"type":51,"tag":123,"props":1274,"children":1275},{"class":125,"line":126},[1276],{"type":51,"tag":123,"props":1277,"children":1278},{},[1279],{"type":57,"value":1280},"try:\n",{"type":51,"tag":123,"props":1282,"children":1283},{"class":125,"line":135},[1284],{"type":51,"tag":123,"props":1285,"children":1286},{},[1287],{"type":57,"value":1288},"    audio = client.text_to_sound_effects.convert(text=\"Explosion\")\n",{"type":51,"tag":123,"props":1290,"children":1291},{"class":125,"line":145},[1292],{"type":51,"tag":123,"props":1293,"children":1294},{},[1295],{"type":57,"value":1296},"except Exception as e:\n",{"type":51,"tag":123,"props":1298,"children":1299},{"class":125,"line":154},[1300],{"type":51,"tag":123,"props":1301,"children":1302},{},[1303],{"type":57,"value":1304},"    print(f\"API error: {e}\")\n",{"type":51,"tag":60,"props":1306,"children":1307},{},[1308],{"type":57,"value":1309},"Common errors:",{"type":51,"tag":1236,"props":1311,"children":1312},{},[1313,1323,1333],{"type":51,"tag":1240,"props":1314,"children":1315},{},[1316,1321],{"type":51,"tag":73,"props":1317,"children":1318},{},[1319],{"type":57,"value":1320},"401",{"type":57,"value":1322},": Invalid API key",{"type":51,"tag":1240,"props":1324,"children":1325},{},[1326,1331],{"type":51,"tag":73,"props":1327,"children":1328},{},[1329],{"type":57,"value":1330},"422",{"type":57,"value":1332},": Invalid parameters (check duration range, prompt_influence range)",{"type":51,"tag":1240,"props":1334,"children":1335},{},[1336,1341],{"type":51,"tag":73,"props":1337,"children":1338},{},[1339],{"type":57,"value":1340},"429",{"type":57,"value":1342},": Rate limit exceeded",{"type":51,"tag":99,"props":1344,"children":1346},{"id":1345},"references",[1347],{"type":57,"value":1348},"References",{"type":51,"tag":1236,"props":1350,"children":1351},{},[1352],{"type":51,"tag":1240,"props":1353,"children":1354},{},[1355],{"type":51,"tag":81,"props":1356,"children":1357},{"href":83},[1358],{"type":57,"value":86},{"type":51,"tag":1360,"props":1361,"children":1362},"style",{},[1363],{"type":57,"value":1364},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1366,"total":197},[1367,1381,1393,1404,1411,1427,1440,1452,1463],{"slug":1368,"name":1368,"fn":1369,"description":1370,"org":1371,"tags":1372,"stars":22,"repoUrl":23,"updatedAt":1380},"agents","build ElevenLabs voice agents","Build voice AI agents with ElevenLabs. Use when creating voice assistants, customer service bots, interactive voice characters, or any real-time voice conversation experience.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1373,1375,1376,1377],{"name":1374,"slug":1368,"type":15},"Agents",{"name":19,"slug":20,"type":15},{"name":9,"slug":8,"type":15},{"name":1378,"slug":1379,"type":15},"Speech","speech","2026-07-24T05:40:07.822247",{"slug":29,"name":29,"fn":1382,"description":1383,"org":1384,"tags":1385,"stars":22,"repoUrl":23,"updatedAt":1392},"generate music with ElevenLabs","Generate music using ElevenLabs Music API. Use when creating instrumental tracks, songs with lyrics, background music, jingles, or any AI-generated music composition. Supports prompt-based generation, composition plans for granular control, and detailed output with metadata.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1386,1389,1390,1391],{"name":1387,"slug":1388,"type":15},"AI Infrastructure","ai-infrastructure",{"name":19,"slug":20,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},"2026-07-24T05:40:08.812767",{"slug":1394,"name":1394,"fn":1395,"description":1396,"org":1397,"tags":1398,"stars":22,"repoUrl":23,"updatedAt":1403},"setup-api-key","set up ElevenLabs API key","Guides users through setting up an ElevenLabs API key for ElevenLabs MCP tools. Use when the user needs to configure an ElevenLabs API key, when ElevenLabs tools fail due to missing API key, or when the user mentions needing access to ElevenLabs. First checks whether ELEVENLABS_API_KEY is already configured and valid, and only runs full setup when needed.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1399,1400],{"name":9,"slug":8,"type":15},{"name":1401,"slug":1402,"type":15},"Environment Variables","environment-variables","2026-04-06T18:09:34.705989",{"slug":4,"name":4,"fn":5,"description":6,"org":1405,"tags":1406,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1407,1408,1409,1410],{"name":19,"slug":20,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":4,"type":15},{"slug":1412,"name":1412,"fn":1413,"description":1414,"org":1415,"tags":1416,"stars":22,"repoUrl":23,"updatedAt":1426},"speech-engine","implement real-time voice conversations","Add real-time voice conversations to a custom agent runtime with ElevenLabs Speech Engine. Use when building Speech Engine servers, WebSocket handlers, WebRTC browser clients, conversation token endpoints, interruption-aware streaming responses, or voice-enabled chat agents that connect developer-owned server logic to ElevenLabs speech-to-text and text-to-speech.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1417,1418,1419,1422,1425],{"name":19,"slug":20,"type":15},{"name":9,"slug":8,"type":15},{"name":1420,"slug":1421,"type":15},"LLM","llm",{"name":1423,"slug":1424,"type":15},"Real-time","real-time",{"name":1378,"slug":1379,"type":15},"2026-05-15T06:13:51.199332",{"slug":1428,"name":1428,"fn":1429,"description":1430,"org":1431,"tags":1432,"stars":22,"repoUrl":23,"updatedAt":1439},"speech-to-text","transcribe audio with ElevenLabs","Transcribe audio to text using ElevenLabs Scribe v2. Use when converting audio\u002Fvideo to text, generating subtitles, transcribing meetings, or processing spoken content.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1433,1434,1435,1436],{"name":19,"slug":20,"type":15},{"name":9,"slug":8,"type":15},{"name":1378,"slug":1379,"type":15},{"name":1437,"slug":1438,"type":15},"Transcription","transcription","2026-07-24T05:40:06.834756",{"slug":1441,"name":1441,"fn":1442,"description":1443,"org":1444,"tags":1445,"stars":22,"repoUrl":23,"updatedAt":1451},"text-to-speech","convert text to speech with ElevenLabs","Convert text to speech using ElevenLabs voice AI. Use when generating audio from text, creating voiceovers, building voice apps, or synthesizing speech in 70+ languages.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1446,1447,1448,1449],{"name":1387,"slug":1388,"type":15},{"name":19,"slug":20,"type":15},{"name":9,"slug":8,"type":15},{"name":1450,"slug":1441,"type":15},"Text-to-Speech","2026-04-06T18:09:38.521103",{"slug":1453,"name":1453,"fn":1454,"description":1455,"org":1456,"tags":1457,"stars":22,"repoUrl":23,"updatedAt":1462},"voice-changer","transform audio recordings with voice conversion","Transform the voice in an audio recording into a different target voice while preserving emotion, timing, and delivery using the ElevenLabs Voice Changer (speech-to-speech) API. Use when converting one voice to another, changing the speaker\u002Fnarrator of an existing recording, dubbing a voice-over in a different voice, creating character voices from a scratch performance, anonymizing a speaker, or any \"voice conversion \u002F voice transfer \u002F speech-to-speech\" task. Make sure to use this skill whenever the user mentions voice changing, voice conversion, speech-to-speech, swapping a voice in audio, re-voicing a clip, or applying a different voice to an existing recording — even if they don't explicitly say \"voice changer\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1458,1459,1460,1461],{"name":1387,"slug":1388,"type":15},{"name":19,"slug":20,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},"2026-05-02T05:22:50.99428",{"slug":1464,"name":1464,"fn":1465,"description":1466,"org":1467,"tags":1468,"stars":22,"repoUrl":23,"updatedAt":1472},"voice-isolator","isolate voices and remove background noise","Remove background noise and isolate vocals\u002Fspeech from audio using ElevenLabs Voice Isolator (audio isolation) API. Use when cleaning up noisy recordings, removing music or background ambience from dialogue, isolating speech from field recordings, preparing audio for transcription, extracting vocals, or any \"denoise \u002F clean up \u002F isolate voice\" task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1469,1470,1471],{"name":19,"slug":20,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},"2026-04-23T05:01:58.01956",{"items":1474,"total":197},[1475,1482,1489,1494,1501,1509,1516],{"slug":1368,"name":1368,"fn":1369,"description":1370,"org":1476,"tags":1477,"stars":22,"repoUrl":23,"updatedAt":1380},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1478,1479,1480,1481],{"name":1374,"slug":1368,"type":15},{"name":19,"slug":20,"type":15},{"name":9,"slug":8,"type":15},{"name":1378,"slug":1379,"type":15},{"slug":29,"name":29,"fn":1382,"description":1383,"org":1483,"tags":1484,"stars":22,"repoUrl":23,"updatedAt":1392},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1485,1486,1487,1488],{"name":1387,"slug":1388,"type":15},{"name":19,"slug":20,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"slug":1394,"name":1394,"fn":1395,"description":1396,"org":1490,"tags":1491,"stars":22,"repoUrl":23,"updatedAt":1403},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1492,1493],{"name":9,"slug":8,"type":15},{"name":1401,"slug":1402,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":1495,"tags":1496,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1497,1498,1499,1500],{"name":19,"slug":20,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":4,"type":15},{"slug":1412,"name":1412,"fn":1413,"description":1414,"org":1502,"tags":1503,"stars":22,"repoUrl":23,"updatedAt":1426},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1504,1505,1506,1507,1508],{"name":19,"slug":20,"type":15},{"name":9,"slug":8,"type":15},{"name":1420,"slug":1421,"type":15},{"name":1423,"slug":1424,"type":15},{"name":1378,"slug":1379,"type":15},{"slug":1428,"name":1428,"fn":1429,"description":1430,"org":1510,"tags":1511,"stars":22,"repoUrl":23,"updatedAt":1439},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1512,1513,1514,1515],{"name":19,"slug":20,"type":15},{"name":9,"slug":8,"type":15},{"name":1378,"slug":1379,"type":15},{"name":1437,"slug":1438,"type":15},{"slug":1441,"name":1441,"fn":1442,"description":1443,"org":1517,"tags":1518,"stars":22,"repoUrl":23,"updatedAt":1451},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1519,1520,1521,1522],{"name":1387,"slug":1388,"type":15},{"name":19,"slug":20,"type":15},{"name":9,"slug":8,"type":15},{"name":1450,"slug":1441,"type":15}]