Skip to main content
Version: 2.0.0

Description

A clip is a piece of content created by Resemble.ai. Unlike Recordings, which are provided by users in order to build realistic voice clones, clips are generated by the Resemble platform.

Resource

A clip resource conforms to the following interface.

interface Timestamps {
graph_chars: string[]
graph_times: number[[]]
phon_chars: string[]
phon_times: number[[]]
}

interface Clip {
uuid: string
title?: string
body: string
voice_uuid: string
is_public: boolean
is_archived: boolean
timestamps: Timestamps
audio_src: string
raw_audio: any
created_at: datetime
updated_at: datetime
}