Search Results for

    Show / Hide Table of Contents

    Class VoiceChangeRequest

    Inheritance
    object
    ElevenLabsAudioRequest
    ElevenLabsVoiceRequest
    VoiceChangeRequest
    Implements
    IMultipartFormRequest
    Inherited Members
    ElevenLabsVoiceRequest.Voice
    ElevenLabsVoiceRequest.EnableLogging
    ElevenLabsVoiceRequest.Model
    ElevenLabsAudioRequest.OutputFormat
    ElevenLabsAudioRequest.AudioFormat
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Glitch9.AIDevKit.ElevenLabs
    Assembly: Glitch9.AIDevKit.Provider.ElevenLabs.dll
    Syntax
    public class VoiceChangeRequest : ElevenLabsVoiceRequest, IMultipartFormRequest

    Properties

    | Edit this page View Source

    Audio

    Required. The audio file which holds the content and emotion that will control the generated speech.

    Declaration
    [JsonProperty("audio")]
    public byte[] Audio { get; set; }
    Property Value
    Type Description
    byte[]
    | Edit this page View Source

    InputFormat

    Optional. The format of input audio. Options are ??칌m_s16le_16??or ??췺her?? For pcm_s16le_16, the input audio must be 16-bit PCM at a 16kHz sample rate, single channel (mono), and little-endian byte order. Latency will be lower than with passing an encoded waveform.

    Declaration
    [JsonProperty("file_format")]
    public ElevenLabsTypes.InputFormat InputFormat { get; set; }
    Property Value
    Type Description
    ElevenLabsTypes.InputFormat
    | Edit this page View Source

    RemoveBackgroundNoise

    Optional. If set, will remove the background noise from your audio input using our audio isolation model. Only applies to Voice Changer. Defaults to false

    Declaration
    [JsonProperty("remove_background_noise")]
    public bool? RemoveBackgroundNoise { get; set; }
    Property Value
    Type Description
    bool?
    | Edit this page View Source

    Seed

    Optional. If specified, our system will make a best effort to sample deterministically, such that repeated requests with the same seed and parameters should return the same result. Determinism is not guaranteed. Must be integer between 0 and 4294967295.

    Declaration
    [JsonProperty("seed")]
    public long? Seed { get; set; }
    Property Value
    Type Description
    long?
    | Edit this page View Source

    VoiceSettings

    Optional. Voice settings overriding stored settings for the given voice. They are applied only on the given request. Needs to be send as a JSON encoded string.

    Declaration
    [JsonProperty("voice_settings")]
    public VoiceSettings VoiceSettings { get; set; }
    Property Value
    Type Description
    VoiceSettings

    Implements

    IMultipartFormRequest

    Extension Methods

    ArrayExtensions.ToArrayOrEmpty<T>(T)
    ArrayExtensions.ToArrayOrNull<T>(T)
    EventExtensions.ToDelta<T>(T, string, int, string, bool)
    EventExtensions.ToDone<T>(T, string, int, string)
    EventExtensions.ToEvent<T>(T)
    EventExtensions.UpcastDelta<T1, T2>(T1, string, int, string, bool)
    FallbackExtensions.IsOr<TParent, TChild>(TParent, TChild)
    ResponseCastingExtensions.GetResult<T>(T)
    SystemExtensions.GetName(object)
    • Edit this page
    • View Source
    In this article
    Back to top AI DevKit Documentation