Alvas.Audio Class Library

RawWriter Class

Writes an audio data to the headerless stream. Slinear, Gsm, A-law, mu-law etc.

For a list of all members of this type, see RawWriter Members.

System.Object
   BinaryWriter
      AudioWriter
         RawWriter

[Visual Basic]
Public Class RawWriter
    Inherits 
[C#]
public class RawWriter : AudioWriter

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Example

This example shows simple using of RawWriter class.

RawWriter rw = new RawWriter(File.Create("out.pcm"));
rw.WriteData(new byte[16000]);
rw.Close();
 

Requirements

Namespace: Alvas.Audio

Assembly: Alvas.Audio (in Alvas.Audio.dll)

See Also

RawWriter Members | Alvas.Audio Namespace