Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 1,294 Bytes
94753b6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
import { InferenceOutputError } from "../../lib/InferenceOutputError";
import type { BaseArgs, Options } from "../../types";
import { request } from "../custom/request";
export type AudioToAudioArgs = BaseArgs & {
/**
* Binary audio data
*/
data: Blob | ArrayBuffer;
};
export interface AudioToAudioOutputValue {
/**
* The label for the audio output (model specific)
*/
label: string;
/**
* Base64 encoded audio output.
*/
blob: string;
/**
* Content-type for blob, e.g. audio/flac
*/
"content-type": string;
}
export type AudioToAudioReturn = AudioToAudioOutputValue[];
/**
* This task reads some audio input and outputs one or multiple audio files.
* Example model: speechbrain/sepformer-wham does audio source separation.
*/
export async function audioToAudio(args: AudioToAudioArgs, options?: Options): Promise<AudioToAudioReturn> {
const res = await request<AudioToAudioReturn>(args, {
...options,
taskHint: "audio-to-audio",
});
const isValidOutput =
Array.isArray(res) &&
res.every(
(x) => typeof x.label === "string" && typeof x.blob === "string" && typeof x["content-type"] === "string"
);
if (!isValidOutput) {
throw new InferenceOutputError("Expected Array<{label: string, blob: string, content-type: string}>");
}
return res;
}
|