Interface AsrProcessParams

interface AsrProcessParams {
    audio: string;
    model: "neutral" | "spontaneous";
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

audio: string

This parameter is a JSON response returned from [vk.com/dev/upload_files_2|file uploading server].

model: "neutral" | "spontaneous"

Which model to use for recognition. neutral -- general purpose (interviews, TV shows, etc.), spontaneous -- for NSFW audios (slang, profanity, etc.)

Generated using TypeDoc