Interface: ProcessResponse
Defined in: src/_other-scraper/vocal-remove.ts:18
The ProcessResponse interface represents the response structure from the AI Vocal Remover API, which processes audio inputs to separate vocal and instrumental tracks.
Properties
vocal_path
vocal_path:
stringThe URL or file path to the processed audio containing the vocal track, obtained from the AI Vocal Remover API.
Defined in:src/_other-scraper/vocal-remove.ts:19
instrumental_path
instrumental_path:
stringThe URL or file path to the processed audio containing the instrumental track, obtained from the AI Vocal Remover API.
Defined in:src/_other-scraper/vocal-remove.ts:20
error?
optionalerror:booleanIndicates whether an error occurred during the processing. If present and set to
true, it signifies that the API encountered an issue.
Defined in:src/_other-scraper/vocal-remove.ts:21
message?
optionalmessage:stringContains additional information or error messages related to the processing outcome. This property provides context when
erroristrue.
Defined in:src/_other-scraper/vocal-remove.ts:22