Initial commit: ACE-Step UI - Open source music generation interface

This commit is contained in:
fspecii
2026-02-04 03:09:38 +02:00
commit 44f7563014
187 changed files with 99985 additions and 0 deletions
@@ -0,0 +1,12 @@
// Add this to app.js after line 78 (after the local= parameter check)
// Check for audioUrl parameter to load audio from URL
if (w.location.href.split('audioUrl=')[1]) {
var audioUrl = decodeURIComponent(w.location.href.split('audioUrl=')[1].split('&')[0]);
setTimeout(function () {
if (audioUrl) {
q.engine.LoadURL(audioUrl);
}
}, 500);
}