← 返回
内容创作 Key

BGM Maker

Generate original background music for short videos from a natural language description. Use when creators need royalty-free BGM, video background music, or...
根据自然语言描述为短视频生成原创免版税背景音乐,适用于创作者需要视频背景音乐等场景。
scikkk
内容创作 clawhub v1.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 686
下载
💾 43
安装
1
版本
#latest

概述

SenseAudio Video BGM Maker

Generate original, royalty-free background music matched to a video's mood and duration. Users describe their video in plain language — no music terminology required.

Step 1: Collect Input

Two paths:

A — Free description: User describes their video naturally.

> "一个人在雨天咖啡馆看书的Vlog,时长45秒"

> "开箱科技产品,要有未来感,30秒"

> "宠物猫咪日常,轻松可爱,1分钟"

B — Preset scenes (quick pick): If the user wants to skip describing, offer these:

#场景默认风格
------------------
1美食探店warm acoustic, appetizing
2旅行Vlogcinematic, adventurous
3产品开箱electronic, modern, clean
4运动健身energetic, driving beat
5宠物日常playful, light, cheerful
6知识讲解minimal, focused, corporate
7情感故事piano ballad, emotional
8城市街拍lo-fi, chill, urban

Also ask: 视频时长? (default: 30秒)

Step 2: Translate to Music Parameters

Map the description to style tags. Think in terms of: genre + mood + instrumentation + energy level.

Scene / KeywordStyle tags
----------------------------
咖啡馆 / 下午茶 / 慵懒lo-fi, cafe, acoustic guitar, warm, relaxed
科技 / 未来 / 数码electronic, synthesizer, futuristic, clean
旅行 / 风景 / 自然cinematic, orchestral, adventurous, uplifting
美食 / 烹饪 / 探店acoustic, warm, cheerful, light jazz
运动 / 健身 / 活力energetic, driving, rock, upbeat, powerful
宠物 / 可爱 / 萌playful, xylophone, light, cheerful, cute
情感 / 治愈 / 温暖piano, strings, emotional, gentle
城市 / 街拍 / 夜晚lo-fi hip hop, urban, chill, beats
知识 / 教程 / 商务minimal, corporate, clean, focused
古风 / 国风traditional Chinese, guqin, erhu, cinematic

Always append duration hint to style: "30-second loop" or "60-second complete piece with build and resolution".

Duration strategy:

  • ≤30s → "short loop, complete in 30 seconds, no long intro"
  • 30–90s → "complete piece, build up in first third, peak in middle, resolve at end"
  • >90s → "extended piece with intro, development, and outro"

Step 3: Generate 3 Versions

Always generate 3 variations with slightly different instrumentation — same mood, different texture. This gives the user real choice without requiring them to re-describe.

Build 3 style strings from the base style:

Version A: <base_style>, <primary instrument>
Version B: <base_style>, <alternative instrument>
Version C: <base_style>, <third instrument variation>

Example for "咖啡馆Vlog, 45秒":

  • A: "lo-fi, cafe, acoustic guitar, warm, relaxed, 45-second complete piece"
  • B: "lo-fi, cafe, piano, warm, relaxed, 45-second complete piece"
  • C: "lo-fi, cafe, jazz guitar, mellow, relaxed, 45-second complete piece"

Submit all 3 in parallel:

for i in 1 2 3; do
  RESP=$(curl -s -X POST "https://api.senseaudio.cn/v1/song/music/create" \
    -H "Authorization: Bearer $SENSEAUDIO_API_KEY" \
    -H "Content-Type: application/json" \
    -d "{
      \"model\": \"sensesong\",
      \"instrumental\": true,
      \"style\": \"<STYLE_V${i}>\",
      \"negative_tags\": \"vocals, lyrics, singing, spoken word\"
    }")
  TASK_IDS[$i]=$(echo $RESP | jq -r '.task_id')
  echo "Version $i task: ${TASK_IDS[$i]}"
done

Poll all 3 tasks (check every 5s):

for i in 1 2 3; do
  while true; do
    POLL=$(curl -s "https://api.senseaudio.cn/v1/song/music/pending/${TASK_IDS[$i]}" \
      -H "Authorization: Bearer $SENSEAUDIO_API_KEY")
    STATUS=$(echo $POLL | jq -r '.status')
    [ "$STATUS" = "SUCCESS" ] || [ "$STATUS" = "FAILED" ] && break
    sleep 5
  done
  RESULTS[$i]=$POLL
done

Output

Present all 3 versions clearly:

短视频配乐生成完成 🎵

场景:雨天咖啡馆Vlog(45秒)

版本 A — 原声吉他风
  时长:<duration>秒
  链接:<audio_url>

版本 B — 钢琴风
  时长:<duration>秒
  链接:<audio_url>

版本 C — 爵士吉他风
  时长:<duration>秒
  链接:<audio_url>

版权说明:以上音乐由 SenseAudio AI 原创生成,可免费用于个人和商业短视频创作。

If the user wants a different mood or style after listening, ask them which version was closest and what to adjust — then regenerate that single version with the updated style.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-30 00:54 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

content-creation

AdMapix

fly0pants
广告情报与应用数据分析助手,支持搜索广告素材、分析应用排名、下载量、收入及市场洞察,用于广告素材和竞品分析。
★ 295 📥 136,421
developer-tools

Meeting Assistant

scikkk
用于构建和排查 SenseAudio 会议助手,覆盖实时会议转写、说话人区分、实时翻译、会议纪要生成、行动项提取与转录导出。Build and troubleshoot SenseAudio meeting assistants for l
★ 1 📥 1,561
content-creation

Humanizer

biostartechnology
消除AI写作痕迹,使文本更自然真实。基于维基百科"AI写作特征"指南,识别并修正夸张象征、宣传用语、肤浅-ing分析、模糊归因、破折号滥用、三项排比、AI词汇、负面平行结构及冗长连接词等模式。
★ 857 📥 199,353