AudioOutputStream Class

  • java.lang.Object
    • com.microsoft.cognitiveservices.speech.audio.AudioOutputStream

Implements

java.lang.AutoCloseable

public class AudioOutputStream
implements java.lang.AutoCloseable

Represents audio output stream used for custom audio output configurations. Note: close() must be called in order to release underlying resources held by the object. Updated in version 1.7.0

Method Summary

Modifier and Type Method and Description
void close()

Explicitly frees any external resource attached to the object Note: close() must be called in order to release underlying resources held by the object.

static PullAudioOutputStream createPullStream()

Creates a memory backed PullAudioOutputStream.

static PushAudioOutputStream createPushStream(PushAudioOutputStreamCallback callback)

Creates a PushAudioOutputStream that delegates to the specified callback interface for write() and close() methods.

SafeHandle getImpl()

Returns the audio output configuration.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Method Details

close

public void close()

Explicitly frees any external resource attached to the object Note: close() must be called in order to release underlying resources held by the object.

createPullStream

public static PullAudioOutputStream createPullStream()

Creates a memory backed PullAudioOutputStream.

Returns:

The audio output stream being created.

createPushStream

public static PushAudioOutputStream createPushStream(PushAudioOutputStreamCallback callback)

Creates a PushAudioOutputStream that delegates to the specified callback interface for write() and close() methods. Added in version 1.7.0

Parameters:

callback - The custom audio output object, derived from PushAudioOutputStreamCallback

Returns:

The audio output stream being created.

getImpl

public SafeHandle getImpl()

Returns the audio output configuration.

Returns:

The implementation of the stream.

Applies to