
superhighfives/song-exploder
From a song idea to stems
Public
23
runs
Run superhighfives/song-exploder with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
theme |
string
|
Theme or topic for the song (e.g., 'lost love', 'mountain home', 'traveling roads', 'city nights')
|
|
genre |
None
|
folk
|
Musical genre for the song
|
tempo |
None
|
moderate
|
Desired tempo for the song
|
mood |
None
|
melancholic
|
Overall mood of the song
|
{
"type": "object",
"title": "Input",
"required": [
"theme"
],
"properties": {
"mood": {
"enum": [
"happy",
"melancholic",
"nostalgic",
"hopeful",
"contemplative"
],
"type": "string",
"title": "mood",
"description": "Overall mood of the song",
"default": "melancholic",
"x-order": 3
},
"genre": {
"enum": [
"folk",
"pop",
"rock",
"jazz",
"country",
"blues",
"electronic",
"classical",
"indie",
"reggae"
],
"type": "string",
"title": "genre",
"description": "Musical genre for the song",
"default": "folk",
"x-order": 1
},
"tempo": {
"enum": [
"slow",
"moderate",
"fast"
],
"type": "string",
"title": "tempo",
"description": "Desired tempo for the song",
"default": "moderate",
"x-order": 2
},
"theme": {
"type": "string",
"title": "Theme",
"x-order": 0,
"description": "Theme or topic for the song (e.g., 'lost love', 'mountain home', 'traveling roads', 'city nights')"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "object",
"title": "Output",
"required": [
"original_song",
"vocal_stem",
"bass_stem",
"drum_stem",
"other_stem",
"metadata"
],
"properties": {
"metadata": {
"type": "string",
"title": "Metadata",
"format": "uri"
},
"bass_stem": {
"type": "string",
"title": "Bass Stem",
"format": "uri"
},
"drum_stem": {
"type": "string",
"title": "Drum Stem",
"format": "uri"
},
"other_stem": {
"type": "string",
"title": "Other Stem",
"format": "uri"
},
"vocal_stem": {
"type": "string",
"title": "Vocal Stem",
"format": "uri"
},
"original_song": {
"type": "string",
"title": "Original Song",
"format": "uri"
}
}
}
Example API response
View prediction
{'bass_stem': 'https://replicate.delivery/xezq/XJYu8L8eMzSnGqou4Kjb5Zj7pLcCezbKmnEhZUBBe4mIdKpqA/bass_stem.wav',
'drum_stem': 'https://replicate.delivery/xezq/F8KbXjD9Hhr4NtM1doaAlLt0FHCTyOQcOIetSGOSz4fkOlUVA/drums_stem.wav',
'metadata': 'https://replicate.delivery/xezq/ksosKcbiU0pbI5SCTiMM8of3xpLtszXeyItUFgkxg08lOlUVA/song_metadata.txt',
'original_song': 'https://replicate.delivery/xezq/Lznl9qi2eDxSWSr5hXgRhe1fenjGcfgOaUfhUeeaT4r0jOlUVA/tmpx30umnbq.wav',
'other_stem': 'https://replicate.delivery/xezq/mypXFhZ5z57KH5D2QSxmHIHV8ayq5Gg4W5JSvXdZrVLpTJVF/other_stem.wav',
'vocal_stem': 'https://replicate.delivery/xezq/XjPNXgFMEKrGFVTFOEMguGEcIG7YmlpjVaBPCT6TuQFpTJVF/vocal_stem.wav'}