This documentation is for the old version. Go to the latest Graphics Mill docs

AviAudioManager.ExportAudioStream Method (Int32, Stream)

Saves the audio stream with specified index to a System.IO.Stream object.

Namespace: Aurigma.GraphicsMill.Codecs
Assembly: Aurigma.GraphicsMill.Codecs.AviProcessor (in Aurigma.GraphicsMill.Codecs.AviProcessor.dll)

Syntax

Visual Basic
Public Sub ExportAudioStream ( _
	streamIndex As Integer, _
	stream As Stream _
)
C#
public void ExportAudioStream(
	int streamIndex,
	Stream stream
)

Parameters

streamIndex

Type: System.Int32

An index of the audio stream.
stream

Type: System.IO.Stream

A destination System.IO.Stream object.

Remarks

Stream indexes are zero-based. To get the total number of audio streams, use the AudioStreamCount property.

Note

You can use this member only if you get this instance of the AviAudioManager from the reader object.

See Also

Reference