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:
string
The 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:
string
The 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?
optional
error:boolean
Indicates 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?
optional
message:string
Contains additional information or error messages related to the processing outcome. This property provides context when
error
istrue
.
Defined in:src/_other-scraper/vocal-remove.ts:22