import type * as core from "../../../../../core"; import type * as ElevenLabs from "../../../../index"; export interface BodyStemSeparationV1MusicStemSeparationPost { /** Output format of the generated audio. Formatted as codec_sample_rate_bitrate. So an mp3 with 22.05kHz sample rate at 32kbs is represented as mp3_22050_32. MP3 with 192kbps bitrate requires you to be subscribed to Creator tier or above. PCM with 44.1kHz sample rate requires you to be subscribed to Pro tier or above. Note that the μ-law format (sometimes written mu-law, often approximated as u-law) is commonly used for Twilio audio inputs. */ outputFormat?: ElevenLabs.AllowedOutputFormats; /** The audio file to separate into stems. */ file: core.file.Uploadable; /** The id of the stem variation to use. */ stemVariationId?: ElevenLabs.MusicSeparateStemsRequestStemVariationId; /** Whether to sign the generated song with C2PA. Applicable only for mp3 files. */ signWithC2Pa?: boolean; }