Install
openclaw skills install @volcengine-skills/byted-music-generateGenerate music using Volcengine Imagination API. Supports vocal songs, instrumental BGM, and lyrics generation. Use when the user wants to create songs, background music, soundtracks, write lyrics, or mentions "music generation", "BGM", or "songwriting".
openclaw skills install @volcengine-skills/byted-music-generateThis skill generates music using the Volcengine Music Generation API. It supports vocal songs, instrumental BGM, and AI lyrics generation.
Before using this skill, ensure the following environment variables are set:
VOLCENGINE_ACCESS_KEY — AccessKey IDVOLCENGINE_SECRET_KEY — AccessKey SecretHow to obtain: Volcengine Console → Account (top-right) → Key Management → Create Key.
song / bgm / lyrics).cd to the skill directory: skills/byted-music-generate.audio_url or lyrics from the JSON output to the user.User provides lyrics (Lyrics) or a text prompt (Prompt) to generate a vocal song.
# With text prompt
python scripts/music_generate.py song --prompt "A song about summer at the beach" --genre Pop --gender Female
# With lyrics
python scripts/music_generate.py song --lyrics "[verse]\nMoonlight on the windowsill\nMemories flowing like water\n[chorus]\nYou are my moonlight" --genre Folk --mood "Sentimental/Melancholic/Lonely"
Note: --lyrics and --prompt are mutually exclusive; lyrics takes priority. If the user hasn't provided lyrics, you can first use the lyrics mode to generate them, then pass the result to the song mode.
Describe the desired music in natural language. The v5.0 model does not require Genre/Mood parameters — just describe everything in the --text field.
python scripts/music_generate.py bgm --text "Relaxed coffee shop ambiance music with piano and guitar" --duration 60
# With song structure segments
python scripts/music_generate.py bgm --text "Epic game soundtrack" --segments '[{"Name":"intro","Duration":10},{"Name":"chorus","Duration":30}]'
Returns synchronously (no polling needed). Can be used standalone or as a pre-step for the song mode.
python scripts/music_generate.py lyrics --prompt "A song about graduation farewell" --genre Folk --mood "Sentimental/Melancholic/Lonely" --gender Female
python scripts/music_generate.py query --task-id "202601397834584670076931"
User Request
↓
Contains "instrumental/BGM/background music/soundtrack"?
├─ Yes → bgm mode
└─ No → Contains "lyrics/write lyrics" and does NOT request audio?
├─ Yes → lyrics mode
└─ No → song mode
├─ User provided lyrics → --lyrics
└─ User only described a theme → --prompt (or lyrics first, then song)
| Parameter | Required | Description |
|---|---|---|
--lyrics | either | Lyrics with structure tags |
--prompt | either | Text prompt (Chinese, 5-700 chars) |
--model-version | no | v4.0 or v4.3 (default: v4.3) |
--genre | no | Music genre |
--mood | no | Music mood |
--gender | no | Female / Male |
--timbre | no | Vocal timbre |
--duration | no | Duration in seconds [30-240] |
--key | no | Musical key (v4.3 only) |
--kmode | no | Major / Minor (v4.3 only) |
--tempo | no | Tempo (v4.3 only) |
--instrument | no | Instruments, comma-separated (v4.3 only) |
--genre-extra | no | Secondary genres, comma-separated, max 2 (v4.3 only) |
--scene | no | Scene tags, comma-separated (v4.3 only) |
--lang | no | Language (v4.3 only) |
--vod-format | no | wav / mp3 (v4.3 only) |
--billing | no | prepaid / postpaid (default: postpaid) |
--timeout | no | Max wait seconds (default: 300) |
| Parameter | Required | Description |
|---|---|---|
--text | yes | Natural language description |
--duration | no | Duration in seconds [30-120] |
--segments | no | JSON array of song structure segments |
--version | no | Model version (default: v5.0) |
--enable-input-rewrite | no | Enable prompt rewriting |
--billing | no | prepaid / postpaid (default: postpaid) |
--timeout | no | Max wait seconds (default: 300) |
| Parameter | Required | Description |
|---|---|---|
--prompt | yes | Lyrics prompt (Chinese only, <500 chars) |
--genre | no | Music genre |
--mood | no | Music mood |
--gender | no | Female / Male |
The script outputs JSON with the following fields:
{
"status": "success | timeout | error",
"mode": "song | bgm | lyrics | query",
"task_id": "...",
"audio_url": "https://...",
"duration": 46.0,
"lyrics": "...",
"error": null
}
Return the audio_url to the user for download or playback. URLs are valid for approximately 1 year, but users should save the file promptly.
PermissionError: VOLCENGINE_ACCESS_KEY ...: Inform the user to configure the environment variables. Write them to the workspace environment variable file, then retry.status: "timeout": The task is still generating. Provide the user with the task_id and the manual query command from the output.