بنقرة واحدة
bgm-search
搜索免费背景音乐,支持按关键词、情绪、场景搜索,基于 Freesound API。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
搜索免费背景音乐,支持按关键词、情绪、场景搜索,基于 Freesound API。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
火山引擎语音识别 - 将音频/视频转文字,支持长音频分段识别。
Use when publishing an Obsidian plugin to the community plugin store, creating GitHub Releases for Obsidian plugins, or submitting PRs to obsidianmd/obsidian-releases
一键部署静态网站到 Vercel 和 Cloudflare Pages。支持 HTML/React/Vue 等任意静态项目。
将 Expo/React Native 项目通过 EAS Build 构建 iOS 包并提交到 TestFlight。支持从零配置 EAS、构建、提交全流程。
综合画图工具 - AI 生图 (Nanobanana/Gemini) + 图片后处理(拼接/抠图/圆形裁剪/合成)。支持中英文自然语言画图。
统一搜索与抓取能力层 - 整合所有外部信息获取接口(搜索、抓取、下载)
| name | bgm-search |
| description | 搜索免费背景音乐,支持按关键词、情绪、场景搜索,基于 Freesound API。 |
| allowed-tools | Bash(python:*), Read, Write |
基于 Freesound API 搜索免费背景音乐,支持按关键词、情绪、场景等条件搜索。
在项目根目录 .env 文件中添加:
FREESOUND_API_KEY=your_api_key
cd .claude/skills/bgm-search
python scripts/search.py "happy upbeat"
# 搜索欢快背景音乐
python scripts/search.py "cheerful background" --duration 60-180
# 搜索科技感音乐
python scripts/search.py "technology electronic" --tag music
# 搜索轻松氛围音乐
python scripts/search.py "relaxing ambient" --limit 5
# 搜索并下载第一个结果
python scripts/search.py "cinematic epic" --download --output ./bgm/
# 下载指定 ID 的音乐
python scripts/download.py 12345 --output ./bgm/epic.mp3
当用户需要背景音乐时,遵循以下流程:
与用户确认:
根据需求转换为英文搜索关键词:
python scripts/search.py "关键词" --tag music --duration 60-300 --limit 10
将搜索结果返回给用户,包括:
| 参数 | 说明 | 默认值 |
|---|---|---|
| query | 搜索关键词(英文) | 必填 |
| --tag | 筛选标签,如 music, ambient | 无 |
| --duration | 时长范围,如 60-180(秒) | 无 |
| --limit | 返回结果数量 | 5 |
| --sort | 排序方式: rating, downloads, duration | rating |
| --download | 下载搜索到的音乐 | false |
| --output | 下载保存目录 | ./downloads |
| 中文 | 英文关键词 |
|---|---|
| 欢快 | happy, cheerful, upbeat, joyful |
| 悲伤 | sad, melancholy, emotional, sorrowful |
| 紧张 | tense, suspense, thriller, dramatic |
| 轻松 | relaxing, calm, peaceful, chill |
| 浪漫 | romantic, love, gentle, tender |
| 激励 | inspiring, motivational, uplifting |
| 中文 | 英文关键词 |
|---|---|
| 科技 | technology, electronic, digital, futuristic |
| 史诗 | epic, cinematic, orchestral, dramatic |
| 爵士 | jazz, smooth, swing |
| 古典 | classical, piano, orchestra |
| 摇滚 | rock, guitar, energetic |
| 氛围 | ambient, atmospheric, soundscape |
| 中文 | 英文关键词 |
|---|---|
| 片头 | intro, opening, logo |
| 背景 | background, underscore |
| 游戏 | game, 8bit, retro |
| 自然 | nature, forest, ocean |
| 城市 | urban, city, street |
Freesound 上的音频采用 Creative Commons 许可证:
使用时请注意查看具体许可证要求。
cd .claude/skills/bgm-search
pip install -r scripts/requirements.txt
直接说:
帮我找一段欢快的背景音乐
搜索适合科技视频的背景音乐
找一段 2 分钟左右的轻松氛围音乐
Claude 会自动调用该 skill 搜索并返回结果。