Search Results for

    Show / Hide Table of Contents

    Interface IAudioOutput

    Responsible for handling incoming audio. You'd normally want a based implementation to play the audio in Unity. But this class can be used in other ways such as streaming the received audio to a server or writing it to a local file. It's just an audio output and the destination depends on your implementation.

    Namespace: Adrenak.UniVoice
    Assembly: cs.temp.dll.dll
    Syntax
    public interface IAudioOutput : IDisposable

    Methods

    Feed(AudioFrame)

    Feeds a AudioFrame object to the audio output.

    Declaration
    void Feed(AudioFrame frame)
    Parameters
    Type Name Description
    AudioFrame frame

    The audio data to be sent.

    In This Article
    Back to top UniVoice documentation