File size: 11,606 Bytes
b2e4883 2224fa6 b2e4883 2224fa6 b2e4883 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | #!/usr/bin/env python3
"""
Jam Buddy — Stable Audio 3 API adapter.
Like tools/jam_buddy.py but shells to the Stability SA3 REST API (Large model)
instead of running SA3 locally on CPU. The API is async (POST -> 202 + id,
poll GET /results/{id} until 200).
Usage mirrors jam_buddy.py:
--midi take.mid --instrument bass --out buddy_bass.wav (text-to-audio at detected BPM)
--wav take.wav --instrument bass --out out.wav (audio-to-audio, strength controls groove cling)
--bpm 120 --duration 30 --out out.wav (manual BPM)
Differences vs local:
- No --negative-prompt (the SA3 API accepts NO negative prompt — confirmed
from the API schema). The complement hint must ride in the positive prompt.
- --steps and --cfg ARE accepted (4-8, 1-25).
- API key read from env STABILITY_API_KEY or repo-root .env.
- 26 credits per successful generation (stable-audio-3 model).
Usage:
.venv/Scripts/python.exe tools/jam_buddy_api.py \
--midi take.mid --instrument bass --out buddy_bass.wav
"""
import argparse
import os
import re
import sys
import time
import wave
import requests
API = "https://api.stability.ai"
MODEL = "stable-audio-3"
CREDITS_PER_GEN = 26
# Instrument -> AudioSparx `Instruments:` tag fragment (matches jam_buddy.py)
INSTRUMENTS = {
"guitar": "Guitar, a tight electric guitar riff",
"bass": "Bass Guitar, a grooving bass line, tight and in the pocket",
"drums": "Drums, a punchy drum groove, kick and snare locked in",
"synth": "Synth, a warm atmospheric pad",
"piano": "Piano, a melodic piano part",
"sax": "Saxophone, a warm breathy saxophone line with a rich tone",
}
DEFAULT_GENRE = "any"
GENRE_TEMPO = {
"metal": (150, 220), "rock": (100, 180), "punk": (140, 220),
"hiphop": (70, 110), "edm": (110, 150), "jazz": (90, 180),
"pop": (90, 130), "any": (60, 220),
}
def load_api_key():
"""Return the Stability API key from env or the repo-root .env file."""
key = os.environ.get("STABILITY_API_KEY")
if key:
return key
# .env lives at the repo ROOT, not in tools/. Check: script dir's parent
# (tools/../), then script dir, then cwd.
script_dir = os.path.dirname(os.path.abspath(__file__))
for root in (os.path.dirname(script_dir), script_dir, os.getcwd()):
dotenv = os.path.join(root, ".env")
if os.path.isfile(dotenv):
with open(dotenv) as f:
for line in f:
line = line.strip()
if line.startswith("STABILITY_API_KEY="):
return line.split("=", 1)[1].strip().strip('"').strip("'")
return None
def detect_bpm_midi(path):
import mido
mid = mido.MidiFile(path)
tpb = mid.ticks_per_beat or 480
note_ticks = []
tempo_us = None
abs_tick = 0
for track in mid.tracks:
for msg in track:
abs_tick += msg.time
if msg.type == "set_tempo":
tempo_us = msg.tempo
elif msg.type == "note_on" and msg.velocity > 0:
note_ticks.append(abs_tick)
if not note_ticks:
raise ValueError(f"No note-on events in {path}")
if tempo_us is not None:
return round(60e6 / tempo_us)
note_ticks.sort()
import numpy as np
intervals = np.diff(note_ticks) / tpb
intervals = intervals[intervals > 0.05]
bpm = 60.0 / float(np.median(intervals))
while bpm < 60:
bpm *= 2
while bpm > 220:
bpm /= 2
return round(bpm)
def midi_duration(path):
import mido
mid = mido.MidiFile(path)
tpb = mid.ticks_per_beat or 480
last_tick = 0
note_ends = {}
tempo_pts = {} # abs_tick -> microseconds
running_us = 500000
abs_tick = 0
for track in mid.tracks:
t = 0
for msg in track:
t += msg.time
if msg.type == "set_tempo":
tempo_pts[t] = msg.tempo
elif msg.type == "note_on" and msg.velocity > 0:
note_ends.setdefault(msg.note, t)
elif msg.type == "note_off" and msg.note in note_ends:
last_tick = max(last_tick, t, note_ends[msg.note])
if not last_tick:
last_tick = max(note_ends.values()) if note_ends else 0
if not tempo_pts:
return last_tick / tpb * (running_us / 1e6)
active_us = running_us
for tick, us in sorted(tempo_pts.items()):
if tick <= last_tick:
active_us = us
return last_tick / tpb * (active_us / 1e6)
def detect_bpm_audio(path, tempo_range=GENRE_TEMPO[DEFAULT_GENRE]):
import librosa
import scipy.stats
import numpy as np
y, sr = librosa.load(path, sr=22050, mono=True)
onset_env = librosa.onset.onset_strength(y=y, sr=sr)
lo, hi = tempo_range
mid = (lo + hi) / 2.0
prior = scipy.stats.norm(loc=mid, scale=(hi - lo) / 4.0)
tempo, _ = librosa.beat.beat_track(onset_envelope=onset_env, sr=sr,
start_bpm=mid, prior=prior)
if np.ndim(tempo):
tempo = float(np.median(np.asarray(tempo)))
return float(tempo), sr
def submit_and_poll(payload, files):
"""POST audio generation, poll to completion, return raw bytes."""
api_key = load_api_key()
headers = {"authorization": f"Bearer {api_key}", "accept": "audio/*"}
resp = requests.post(f"{API}/v2beta/audio/{payload.pop('endpoint')}",
headers=headers, files=files, data=payload, timeout=120)
if resp.status_code == 403:
raise RuntimeError(f"content moderation flagged the request: {resp.text[:300]}")
if resp.status_code != 202:
raise RuntimeError(f"generation failed {resp.status_code}: {resp.text[:300]}")
gen_id = resp.json()["id"]
print(f" queued generation {gen_id} (credits: {CREDITS_PER_GEN})")
# Poll every 10s up to ~5 min. Endpoint is /v2beta/audio/results/{id}.
for _ in range(30):
res = requests.get(f"{API}/v2beta/audio/results/{gen_id}",
headers={"authorization": f"Bearer {api_key}",
"accept": "audio/*"}, timeout=60)
if res.status_code == 200:
return res.content
if res.status_code not in (202,):
raise RuntimeError(f"poll error {res.status_code}: {res.text[:300]}")
time.sleep(10)
raise TimeoutError("generation did not complete in time")
def main():
ap = argparse.ArgumentParser(description=__doc__)
src = ap.add_mutually_exclusive_group()
src.add_argument("--midi", help="MIDI recording from a controller")
src.add_argument("--wav", help="audio take (audio-to-audio)")
ap.add_argument("--instrument", default="bass", choices=sorted(INSTRUMENTS))
ap.add_argument("--out", default="buddy_response.mp3")
ap.add_argument("--duration", type=float, default=30.0)
ap.add_argument("--bpm", type=float, default=None)
ap.add_argument("--detect-only", action="store_true",
help="detect BPM + duration and print them, then exit (no generation)")
ap.add_argument("--steps", type=int, default=8)
ap.add_argument("--cfg", type=float, default=1.0)
ap.add_argument("--seed", type=int, default=0)
ap.add_argument("--prompt", type=str, default=None)
ap.add_argument("--genre", default=DEFAULT_GENRE, choices=sorted(GENRE_TEMPO))
ap.add_argument("--strength", type=float, default=1.0,
help="audio-to-audio strength (0=identical input, 1=ignore input)")
ap.add_argument("--negative-prompt", type=str, default=None,
help="NOT SUPPORTED by the SA3 API; ignored with a warning")
args = ap.parse_args()
key = load_api_key()
if not key:
ap.error("STABILITY_API_KEY not found (env or .env)")
if args.negative_prompt:
print(" WARNING: --negative-prompt is NOT supported by the SA3 API; "
"ignored. Fold complement hints into --prompt instead.")
# 1. Resolve BPM + duration + input audio.
# Option A: the route ALWAYS passes the knob's --bpm as authoritative. The
# take still sets DURATION (so the response matches its length) and, for
# audio, is fed via init_audio so the buddy responds to the groove. BPM
# detection only happens in --detect-only mode (to pre-fill the knob).
init_audio = None
if args.detect_only:
if args.midi:
d = detect_bpm_midi(args.midi)
dur = max(6.0, midi_duration(args.midi))
elif args.wav:
d, _ = detect_bpm_audio(args.wav, GENRE_TEMPO[args.genre])
import soundfile as _sf
_info = _sf.info(args.wav)
dur = max(6.0, float(_info.frames) / _info.samplerate)
else:
ap.error("--detect-only requires --midi or --wav")
print(f"DETECT {round(d)} {dur:.2f}")
return
if args.bpm is not None:
bpm = args.bpm
print(f"Using knob BPM: {bpm}")
else:
# No --bpm: fall back to detection (CLI use). Web always passes the knob.
if args.midi:
bpm = detect_bpm_midi(args.midi)
print(f"Detected BPM (MIDI): {bpm}")
elif args.wav:
bpm, _ = detect_bpm_audio(args.wav, GENRE_TEMPO[args.genre])
print(f"Detected BPM (audio): {bpm:.1f} (genre={args.genre})")
else:
ap.error("one of --midi, --wav, or --bpm is required")
# Duration always comes from the take when present (never from the knob).
if args.midi:
args.duration = max(6.0, midi_duration(args.midi))
print(f" MIDI duration -> response {args.duration:.1f}s")
elif args.wav:
import soundfile as sf
info = sf.info(args.wav)
args.duration = max(6.0, float(info.frames) / info.samplerate)
print(f" audio length -> response {args.duration:.1f}s")
init_audio = open(args.wav, "rb")
# 2. Prompt (AudioSparx vocab, same as the CLI/route).
if args.prompt:
prompt = args.prompt
else:
prompt = (f"TrackType: Music, VocalType: Instrumental, "
f"Instruments: {INSTRUMENTS[args.instrument]}, "
f"{int(round(bpm))} BPM, studio recording")
print(f" prompt: {prompt!r}")
# 3. Build multipart payload.
payload = {
"prompt": prompt,
"model": MODEL,
"duration": int(round(args.duration)),
"seed": str(args.seed),
"steps": str(args.steps),
"cfg_scale": str(args.cfg),
"output_format": "mp3" if args.out.endswith(".mp3") else "wav",
}
files = {}
if init_audio is not None:
payload["strength"] = str(args.strength)
files["audio"] = ("take." + ("mp3" if args.wav.lower().endswith((".mp3",)) else "wav"),
init_audio, "audio/wav")
payload["endpoint"] = "stable-audio/audio-to-audio"
print(f" audio-to-audio: strength={args.strength}")
else:
# The API requires multipart/form-data even without a file; the
# reference sample passes an empty 'none' part to force that.
files["none"] = ""
payload["endpoint"] = "stable-audio/text-to-audio"
raw = submit_and_poll(payload, files)
with open(args.out, "wb") as f:
f.write(raw)
# Print the BPM in the route's parseable format (same as jam_buddy.py's
# "Wrote ...: <dur>s @ <bpm> BPM") so the webapp reads 158, not 120.
print(f"Wrote {args.out}: {args.duration:.1f}s @ {int(round(bpm))} BPM "
f"({len(raw)} bytes, expected credits used: {CREDITS_PER_GEN})")
if __name__ == "__main__":
main()
|