
ACE-Step Music Generation
FreeGenerate custom music tracks with AI.
Free · Opens the source repo
What ACE-Step Music Generation does
ACE-Step 1.5 is an open-source tool designed for AI-driven music generation, suitable for developers and designers involved in audio production. With its Python-based implementation, users can create a variety of music types, including background tracks, vocal compositions, and covers, making it a versatile addition to any multimedia project. The tool operates on a serverless architecture via RunPod, requiring specific API keys for setup, which can be easily configured using a provided command.
The core functionality revolves around a simple command-line interface that allows users to generate music based on text prompts, control musical parameters like duration, BPM, and key, and even incorporate lyrics for vocal tracks. Users can also utilize preset styles tailored for specific scenarios, such as corporate presentations or dramatic scenes, enhancing the audio experience for video productions. Additionally, the tool supports stem extraction, enabling users to isolate individual audio components from mixed tracks, which is particularly useful in remixing or editing workflows.
This skill is particularly beneficial for content creators, video producers, and anyone needing quick access to custom music without the need for extensive musical knowledge. By leveraging AI, ACE-Step allows users to focus on creative aspects while automating the technical challenges of music composition. The detailed prompt engineering guidelines help users craft effective requests, ensuring that the generated music aligns closely with their artistic vision.
ACE-Step is not just for seasoned musicians; it caters to a broad audience, including developers looking to integrate music generation into applications or designers seeking unique soundtracks for their projects. However, it may not be the best choice for those requiring highly complex compositions or real-time performance capabilities, as its primary function is to generate pre-recorded tracks based on user inputs.
When to use it
Use ACE-Step when you need to create custom music for videos, presentations, or other media projects.
When not to use it
This tool may not be suitable for live music performance or highly intricate compositions requiring real-time adjustments.
What you can build with it
Creating Background Music for Presentations
Generate professional background music using ACE-Step's presets tailored for corporate settings.
Composing a Custom Jingle
Use ACE-Step to create catchy jingles by providing a prompt and lyrics, perfect for branding.
Extracting Vocals from a Mixed Track
Utilize the stem extraction feature to isolate vocals or instruments from a mixed audio file for further editing.
How to install ACE-Step Music Generation
View source1. Install with the skills CLI
npx skills add calesthio/openmontage/acestep --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by calesthioACE-Step 1.5 Music Generation
Open-source music generation (MIT license) via tools/music_gen.py. Runs on RunPod serverless.
Requires RUNPOD_API_KEY and RUNPOD_ACESTEP_ENDPOINT_ID in .env (run --setup to create endpoint).
Quick Reference
# Basic generation
python tools/music_gen.py --prompt "Upbeat tech corporate" --duration 60 --output bg.mp3
# With musical control
python tools/music_gen.py --prompt "Calm ambient piano" --duration 30 --bpm 72 --key "D Major" --output ambient.mp3
# Scene presets (video production)
python tools/music_gen.py --preset corporate-bg --duration 60 --output bg.mp3
python tools/music_gen.py --preset tension --duration 20 --output problem.mp3
python tools/music_gen.py --preset cta --brand digital-samba --duration 15 --output cta.mp3
# Vocals with lyrics
python tools/music_gen.py --prompt "Indie pop jingle" --lyrics "[verse]\nBuild it better\nShip it faster" --duration 30 --output jingle.mp3
# Cover / style transfer
python tools/music_gen.py --cover --reference theme.mp3 --prompt "Jazz piano version" --duration 60 --output jazz_cover.mp3
# Stem extraction
python tools/music_gen.py --extract vocals --input mixed.mp3 --output vocals.mp3
# List presets
python tools/music_gen.py --list-presets
Creating a Song (Step by Step)
1. Instrumental background track (simplest)
python tools/music_gen.py --prompt "Upbeat indie rock, driving drums, jangly guitar" --duration 60 --bpm 120 --key "G Major" --output track.mp3
2. Song with vocals and lyrics
Write lyrics in a temp file or pass inline. Use structure tags to control song sections.
# Write lyrics to a file first (recommended for longer songs)
cat > /tmp/lyrics.txt << 'LYRICS'
[Verse 1]
Walking through the morning light
Coffee in my hand feels right
Another day to build and dream
Nothing's ever what it seems
[Chorus - anthemic]
WE KEEP MOVING FORWARD
Through the noise and doubt
We keep moving forward
That's what it's about
[Verse 2]
Screens are glowing late at night
Shipping code until it's right
The deadline's close but so are we
Almost there, just wait and see
[Chorus - bigger]
WE KEEP MOVING FORWARD
Through the noise and doubt
We keep moving forward
That's what it's about
[Outro - fade]
(Moving forward...)
LYRICS
# Generate the song
python tools/music_gen.py \
--prompt "Upbeat indie rock anthem, male vocal, driving drums, electric guitar, studio polish" \
--lyrics "$(cat /tmp/lyrics.txt)" \
--duration 60 \
--bpm 128 \
--key "G Major" \
--output my_song.mp3
3. Using a preset for video background
python tools/music_gen.py --preset tension --duration 20 --output problem_scene.mp3
Key tips for good results
- Caption = overall style (genre, instruments, mood, production quality)
- Lyrics = temporal structure (verse/chorus flow, vocal delivery)
- UPPERCASE in lyrics = high vocal intensity
- Parentheses = background vocals: "We rise (together)"
- Keep 6-10 syllables per line for natural rhythm
- Don't describe the melody in the caption — describe the sound and feeling
- Use
--seedto lock randomness when iterating on prompt/lyrics
Scene Presets
| Preset | BPM | Key | Use Case |
|---|---|---|---|
corporate-bg | 110 | C Major | Professional background, presentations |
upbeat-tech | 128 | G Major | Product launches, tech demos |
ambient | 72 | D Major | Overview slides, reflective content |
dramatic | 90 | D Minor | Reveals, announcements |
tension | 85 | A Minor | Problem statements, challenges |
hopeful | 120 | C Major | Solution reveals, resolutions |
cta | 135 | E Major | Call to action, closing energy |
lofi | 85 | F Major | Screen recordings, coding demos |
Task Types
text2music (default)
Generate music from text prompt + optional lyrics.
cover
Style transfer from reference audio. Control blend with --cover-strength (0.0-1.0):
- 0.2 — Loose style inspiration (more creative freedom)
- 0.5 — Balanced style transfer
- 0.7 — Close to original structure (default)
- 1.0 — Maximum fidelity to source
extract
Stem separation — isolate individual tracks from mixed audio.
Tracks: vocals, drums, bass, guitar, piano, keyboard, strings, brass, woodwinds, other
repaint (future)
Regenerate a specific time segment within existing audio while preserving the rest.
lego (future, requires base model)
Generate individual instrument tracks within an existing audio context.
complete (future, requires base model)
Extend partial compositions by adding specified instruments.
Prompt Engineering
Caption Writing — Layer Dimensions
Write captions by layering multiple descriptive dimensions rather than single-word descriptions.
Dimensions to include:
- Genre/Style: pop, rock, jazz, electronic, lo-fi, synthwave, orchestral
- Emotion/Mood: melancholic, euphoric, dreamy, nostalgic, intimate, tense
- Instruments: acoustic guitar, synth pads, 808 drums, strings, brass, piano
- Timbre: warm, crisp, airy, punchy, lush, polished, raw
- Era: "80s synth-pop", "modern indie", "classical romantic"
- Production: lo-fi, studio-polished, live recording, cinematic
- Vocal: breathy, powerful, falsetto, raspy, spoken word (or "instrumental")
Good: "Slow melancholic piano ballad with intimate female vocal, warm strings building to powerful chorus, studio-polished production" Bad: "Sad song"
Key Principles
- Specificity over vagueness — describe instruments, mood, production style
- Avoid contradictions — don't request "classical strings" and "hardcore metal" simultaneously
- Repetition reinforces priority — repeat important elements for emphasis
- Sparse captions = more creative freedom — detailed captions constrain the model
- Use metadata params for BPM/key — don't write "120 BPM" in the caption, use
--bpm 120
Lyrics Formatting
Structure tags (use in lyrics, not caption):
[Intro]
[Verse]
[Chorus]
[Bridge]
[Outro]
[Instrumental]
[Guitar Solo]
[Build]
[Drop]
[Breakdown]
Vocal control (prefix lines or sections):
[raspy vocal]
[whispered]
[falsetto]
[powerful belting]
[harmonies]
[ad-lib]
Energy indicators:
- UPPERCASE = high intensity ("WE RISE ABOVE")
- Parentheses = background vocals ("We rise (together)")
- Keep 6-10 syllables per line within sections for natural rhythm
Example — Tech Product Jingle:
[Verse]
Build it better, ship it faster
Every feature tells a story
[Chorus - anthemic]
THIS IS YOUR PLATFORM
Your vision, your stage
Digital Samba, every page
[Outro - fade]
(Build it better...)
Video Production Integration
Music for Scene Types
| Scene | Preset | Duration | Notes |
|---|---|---|---|
| Title | dramatic or ambient | 3-5s | Short, mood-setting |
| Problem | tension | 10-15s | Dark, unsettling |
| Solution | hopeful | 10-15s | Relief, optimism |
| Demo | lofi or corporate-bg | 30-120s | Non-distracting, matches demo length |
| Stats | upbeat-tech | 8-12s | Building credibility |
| CTA | cta | 5-10s | Maximum energy, punchy |
| Credits | ambient | 5-10s | Gentle fade-out |
Timing Workflow
- Plan scene durations first (from voiceover script)
- Generate music to match:
--duration <scene_seconds> - Music duration is precise (within 0.1s of requested)
- For background music spanning multiple scenes: generate one long track
Combining with Voiceover
Background music should be mixed at 10-20% volume in Remotion:
<Audio src={staticFile('voiceover.mp3')} volume={1} />
<Audio src={staticFile('bg-music.mp3')} volume={0.15} />
For music under narration: use instrumental presets (corporate-bg, ambient, lofi).
For music-forward scenes (title, CTA): can use higher volume or vocal tracks.
Brand Consistency
Use --brand <name> to load hints from brands/<name>/brand.json.
Use --cover --reference brand_theme.mp3 to create variations of a brand's sonic identity.
For consistent sound across a project: fix the seed (--seed 42) and vary only duration/prompt.
Technical Details
- Output: 48kHz MP3/WAV/FLAC
- Duration range: 10-600 seconds
- BPM range: 30-300
- Inference: ~2-3s on GPU (turbo, 8 steps), ~40-60s on Mac MPS
- Turbo model: 8 steps, no CFG needed, fast and good quality
- Shift parameter: 3.0 recommended for turbo (improves quality)
When NOT to use ACE-Step
- Voice cloning — use Qwen3-TTS or ElevenLabs instead
- Sound effects — use ElevenLabs SFX (
tools/sfx.py) - Speech/narration — use voiceover tools, not music gen
- Stem extraction from video — extract audio first with FFmpeg, then use
--extract
Frequently asked questions about ACE-Step Music Generation
Similar skills
Avatar Video
Create customizable AI avatar videos with ease.
AudioCraft Audio Generation
Generate music and sound effects from text descriptions.
Music Generation
Generate custom music tracks from prompts and lyrics.
Seedance Video Generation
Create AI-generated videos from text, images, and audio.
Seedance 2.0
Generate high-quality cinematic video clips effortlessly.
ElevenLabs Music Generation
Create AI-generated music from text prompts.
