Package com.opentok.android
Class PublisherKit.AudioTransformer
- java.lang.Object
-
- com.opentok.android.PublisherKit.AudioTransformer
-
- Enclosing class:
- PublisherKit
public class PublisherKit.AudioTransformer extends java.lang.Object
A transformer for an audio stream.
-
-
Constructor Summary
Constructors Constructor Description AudioTransformer(java.lang.String name, PublisherKit.CustomAudioTransformer transformer)
Creates an instance of a custom audio transformer.AudioTransformer(java.lang.String name, java.lang.String properties)
Creates an instance of a Vonage audio transformer.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
finalize()
Called by the garbage collector when it determines that there are no more references to the VideoTransformer object.
-
-
-
Constructor Detail
-
AudioTransformer
public AudioTransformer(java.lang.String name, java.lang.String properties) throws java.lang.Exception
Creates an instance of a Vonage audio transformer.
Important: In version 2.27.2+ of the Vonage Video client SDK for Android, you need to add the Vonage Media Library separately from the Vonage Video Android SDK. For details, see Vonage Media Library integration.
Check additional information in the Transformers Package README.md file.- Parameters:
name
- The name of the Vonage audio transformer.properties
- A JSON string with the properties of the Vonage audio transformer.- Throws:
java.lang.Exception
-
AudioTransformer
public AudioTransformer(java.lang.String name, PublisherKit.CustomAudioTransformer transformer)
Creates an instance of a custom audio transformer.- Parameters:
name
- The identifier for the transformer.transformer
- The transformer.
-
-