elevenlabs-sound-effects
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseElevenLabs Sound Effects
ElevenLabs 音效生成
Generate sound effects from text descriptions via inference.sh CLI.

通过inference.sh CLI从文本描述生成音效。

Quick Start
快速开始
Requires inference.sh CLI (). Install instructionsbelt
bash
belt login需要安装inference.sh CLI()。安装说明belt
bash
belt loginGenerate a sound effect
Generate a sound effect
belt app run elevenlabs/sound-effects --input '{"text": "Thunder rumbling in the distance"}'
undefinedbelt app run elevenlabs/sound-effects --input '{"text": "Thunder rumbling in the distance"}'
undefinedParameters
参数说明
| Parameter | Type | Description |
|---|---|---|
| string | Description of the sound effect (max 1000 chars) |
| number | Duration 0.5-22 seconds (optional, auto if omitted) |
| number | 0-1, how literal to interpret prompt (default: 0.3) |
| 参数 | 类型 | 描述 |
|---|---|---|
| string | 音效的文本描述(最多1000字符) |
| number | 时长0.5-22秒(可选,省略则自动生成) |
| number | 0-1之间的数值,控制对提示词的字面化解读程度(默认值:0.3) |
Examples
使用示例
Cinematic Effects
电影级音效
bash
undefinedbash
undefinedEpic trailer hit
Epic trailer hit
belt app run elevenlabs/sound-effects --input '{"text": "Cinematic braam, deep bass impact"}'
belt app run elevenlabs/sound-effects --input '{"text": "Cinematic braam, deep bass impact"}'
Suspense drone
Suspense drone
belt app run elevenlabs/sound-effects --input '{
"text": "Dark atmospheric drone, tension building, horror",
"duration_seconds": 10
}'
belt app run elevenlabs/sound-effects --input '{
"text": "Dark atmospheric drone, tension building, horror",
"duration_seconds": 10
}'
Whoosh transition
Whoosh transition
belt app run elevenlabs/sound-effects --input '{
"text": "Fast cinematic whoosh transition",
"duration_seconds": 1.5
}'
undefinedbelt app run elevenlabs/sound-effects --input '{
"text": "Fast cinematic whoosh transition",
"duration_seconds": 1.5
}'
undefinedNature & Environment
自然与环境音效
bash
undefinedbash
undefinedRain
Rain
belt app run elevenlabs/sound-effects --input '{
"text": "Heavy rain on a tin roof with occasional thunder",
"duration_seconds": 15
}'
belt app run elevenlabs/sound-effects --input '{
"text": "Heavy rain on a tin roof with occasional thunder",
"duration_seconds": 15
}'
Forest ambience
Forest ambience
belt app run elevenlabs/sound-effects --input '{
"text": "Forest ambience with birds chirping and gentle wind",
"duration_seconds": 20
}'
belt app run elevenlabs/sound-effects --input '{
"text": "Forest ambience with birds chirping and gentle wind",
"duration_seconds": 20
}'
Ocean waves
Ocean waves
belt app run elevenlabs/sound-effects --input '{
"text": "Ocean waves crashing on a beach, calming",
"duration_seconds": 15
}'
undefinedbelt app run elevenlabs/sound-effects --input '{
"text": "Ocean waves crashing on a beach, calming",
"duration_seconds": 15
}'
undefinedGame Audio
游戏音频
bash
undefinedbash
undefinedPower-up
Power-up
belt app run elevenlabs/sound-effects --input '{
"text": "Retro game power-up sound, ascending tones",
"duration_seconds": 1
}'
belt app run elevenlabs/sound-effects --input '{
"text": "Retro game power-up sound, ascending tones",
"duration_seconds": 1
}'
Explosion
Explosion
belt app run elevenlabs/sound-effects --input '{
"text": "Sci-fi laser explosion, futuristic",
"duration_seconds": 3
}'
belt app run elevenlabs/sound-effects --input '{
"text": "Sci-fi laser explosion, futuristic",
"duration_seconds": 3
}'
UI click
UI click
belt app run elevenlabs/sound-effects --input '{
"text": "Soft UI button click, subtle and clean",
"duration_seconds": 0.5
}'
undefinedbelt app run elevenlabs/sound-effects --input '{
"text": "Soft UI button click, subtle and clean",
"duration_seconds": 0.5
}'
undefinedEveryday Sounds
日常音效
bash
undefinedbash
undefinedDoorbell
Doorbell
belt app run elevenlabs/sound-effects --input '{"text": "Classic doorbell ring"}'
belt app run elevenlabs/sound-effects --input '{"text": "Classic doorbell ring"}'
Typing
Typing
belt app run elevenlabs/sound-effects --input '{
"text": "Mechanical keyboard typing, fast, clicky",
"duration_seconds": 5
}'
belt app run elevenlabs/sound-effects --input '{
"text": "Mechanical keyboard typing, fast, clicky",
"duration_seconds": 5
}'
Notification
Notification
belt app run elevenlabs/sound-effects --input '{
"text": "Pleasant notification chime, positive",
"duration_seconds": 1
}'
undefinedbelt app run elevenlabs/sound-effects --input '{
"text": "Pleasant notification chime, positive",
"duration_seconds": 1
}'
undefinedPrompt Influence
提示词影响度
Control how literally the model interprets your description:
| Value | Effect | Best For |
|---|---|---|
| 0.0 | Very loose interpretation | Creative, surprising results |
| 0.3 | Balanced (default) | General purpose |
| 0.7 | Close to description | Specific sound needs |
| 1.0 | Very literal | Exact sound reproduction |
bash
undefined控制模型对描述的字面化解读程度:
| 数值 | 效果 | 适用场景 |
|---|---|---|
| 0.0 | 非常宽松的解读 | 创意、惊喜的结果 |
| 0.3 | 平衡解读(默认值) | 通用场景 |
| 0.7 | 贴近描述的解读 | 特定音效需求 |
| 1.0 | 完全字面化解读 | 精准音效还原 |
bash
undefinedLoose interpretation - creative result
Loose interpretation - creative result
belt app run elevenlabs/sound-effects --input '{
"text": "Magical fairy dust sparkle",
"prompt_influence": 0.1
}'
belt app run elevenlabs/sound-effects --input '{
"text": "Magical fairy dust sparkle",
"prompt_influence": 0.1
}'
Literal interpretation - precise result
Literal interpretation - precise result
belt app run elevenlabs/sound-effects --input '{
"text": "Single gunshot, pistol, indoor range",
"prompt_influence": 0.8
}'
undefinedbelt app run elevenlabs/sound-effects --input '{
"text": "Single gunshot, pistol, indoor range",
"prompt_influence": 0.8
}'
undefinedPrompt Tips
提示词编写技巧
Be specific: "Heavy rain on metal roof" > "rain sound"
Include context: "Footsteps on gravel, slow walking pace" > "footsteps"
Describe mood: "Eerie wind howling through abandoned building" > "wind"
Specify material: "Glass shattering on concrete floor" > "breaking glass"
具体化:「金属屋顶上的大雨声」优于「雨声」
添加场景:「砾石路上的慢走脚步声」优于「脚步声」
描述情绪:「废弃建筑中呼啸的诡异风声」优于「风声」
指定材质:「混凝土地面上的玻璃破碎声」优于「玻璃破碎声」
Workflow: Add SFX to Video
工作流:为视频添加SFX音效
bash
undefinedbash
undefined1. Generate sound effect
1. Generate sound effect
belt app run elevenlabs/sound-effects --input '{
"text": "Dramatic reveal swoosh with bass drop",
"duration_seconds": 2
}' > sfx.json
belt app run elevenlabs/sound-effects --input '{
"text": "Dramatic reveal swoosh with bass drop",
"duration_seconds": 2
}' > sfx.json
2. Merge with video
2. Merge with video
belt app run infsh/media-merger --input '{
"media": ["video.mp4", "<sfx-url>"]
}'
undefinedbelt app run infsh/media-merger --input '{
"media": ["video.mp4", "<sfx-url>"]
}'
undefinedUse Cases
应用场景
- Video Production: Transitions, impacts, ambience
- Game Development: UI sounds, effects, environments
- Podcasts: Stingers, transitions, atmosphere
- Film/Animation: Foley, ambience, scoring elements
- Presentations: Attention-grabbing sound cues
- Social Media: Short-form content audio
- 视频制作:转场音效、冲击音效、环境音
- 游戏开发:UI音效、特效音、环境音
- 播客:开场音效、转场音效、氛围音
- 电影/动画:拟音(foley)、环境音、配乐元素
- 演示文稿:吸引注意力的音效提示
- 社交媒体:短视频内容音频
Related Skills
相关技能
bash
undefinedbash
undefinedElevenLabs music generation
ElevenLabs music generation
npx skills add inference-sh/skills@elevenlabs-music
npx skills add inference-sh/skills@elevenlabs-music
ElevenLabs TTS (combine voice with effects)
ElevenLabs TTS (combine voice with effects)
npx skills add inference-sh/skills@elevenlabs-tts
npx skills add inference-sh/skills@elevenlabs-tts
AI music generation (Diffrythm, Tencent)
AI music generation (Diffrythm, Tencent)
npx skills add inference-sh/skills@ai-music-generation
npx skills add inference-sh/skills@ai-music-generation
Full platform skill (all 250+ apps)
Full platform skill (all 250+ apps)
npx skills add inference-sh/skills@infsh-cli
Browse all audio apps: `belt app list --category audio`npx skills add inference-sh/skills@infsh-cli
浏览所有音频应用:`belt app list --category audio`