@vonage/media-processor
    Preparing search index...

    Interface MediaProcessorConnectorInterface

    Interface definition for media processor connector instances. This interface is used for the integration for this library with the Vonage SDKs.

    interface MediaProcessorConnectorInterface {
        destroy(): Promise<void>;
        setTrack(track: MediaStreamTrack): Promise<MediaStreamTrack>;
    }

    Implemented by

    Index

    Methods

    • Stops the media processing being performed.

      Returns Promise<void>

    • Sets the media stream track instance to be processed.

      Parameters

      • track: MediaStreamTrack

        MeadiaStreamTrack (audio or video) to be processed.

      Returns Promise<MediaStreamTrack>

      New track to be used.