Stems
For Music
Name | Stem Name | Description |
---|---|---|
Instrumental | instrumental | Refers to music without vocals, only instruments |
Drums | drums | Percussion instruments producing rhythmic beats |
Vocals | vocals | Singing or vocal sounds |
Bass | bass | Low-frequency musical instrument |
Other | other | Other unspecified musical instruments or sounds |
Guitar | guitar | String instrument usually played with fingers |
Other-x-Guitar | other-x-guitar | Specific type or variation of a guitar |
Piano | piano | Keyboard instrument producing sound via strings |
Wind | wind | Instruments like flute, saxophone, producing sound by vibrating air |
For Dubbing/Film and Captioning/Transcription
Name | Stem Name | Description |
---|---|---|
Music | music | General music audio, including instruments and melodies |
Dialogue | dialogue | Spoken conversation or interaction between characters |
Transcription | transcription | Text representation of spoken words or audio content |
Alignment | alignment | Synchronization of audio and corresponding text or captions |
Example
In the provided cURL command, the "name" field in the JSON payload specifies the desired stem type for processing the audio file. It allows you to indicate what specific part of the audio you want to extract or process.
curl -L -X POST 'https://groovy.audioshake.ai/job/' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"metadata": {
"format": "wav",
"name": "vocals"
},
"callbackUrl": "https://example.com/webhook/vocals",
"assetId": "abc123"
}'