auto timestamp lyricks when song selected

This commit is contained in:
Thomas Demirdjian
2025-09-09 13:51:20 +02:00
parent 9a9de33ef2
commit ea9bfb0f05
7 changed files with 158 additions and 181 deletions
+8
View File
@@ -0,0 +1,8 @@
exports.SUNO_API_BASE = "https://api.sunoapi.org";
exports.SUNO_API_PATH = "/api/v1/generate";
exports.SUNO_STATUS_PATH = "/api/v1/generate/record-info";
exports.SUNO_TIMESTAMPED_LYRICS_PATH =
"/api/v1/generate/get-timestamped-lyrics";
exports.SUNO_MODEL = "V4_5";
exports.SUNO_CALLBACK_URL =
"https://us-central1-musicland-d33f9.cloudfunctions.net/music-sunoCallback";