C# 클래스 AlbLib.Sounds.RawPCMSound

상속: SoundBase
파일 보기 프로젝트 열기: IllidanS4/AlbLib 1 사용 예제들

공개 메소드들

메소드 설명
RawPCMSound ( Stream stream, int length ) : System

Loads sound from stream.

RawPCMSound ( byte data ) : System

Loads sound from byte array.

ToWAVE ( ) : byte[]

Converts sound to wave format.

ToWAVEStream ( ) : MemoryStream
WriteWAVEToStream ( Stream output ) : int

비공개 메소드들

메소드 설명
RawPCMSound ( ) : System

메소드 상세

RawPCMSound() 공개 메소드

Loads sound from stream.
public RawPCMSound ( Stream stream, int length ) : System
stream Stream /// Input stream. ///
length int /// Length of ///
리턴 System

RawPCMSound() 공개 메소드

Loads sound from byte array.
public RawPCMSound ( byte data ) : System
data byte /// Raw PCM data. ///
리턴 System

ToWAVE() 공개 메소드

Converts sound to wave format.
public ToWAVE ( ) : byte[]
리턴 byte[]

ToWAVEStream() 공개 메소드

public ToWAVEStream ( ) : MemoryStream
리턴 System.IO.MemoryStream

WriteWAVEToStream() 공개 메소드

public WriteWAVEToStream ( Stream output ) : int
output Stream
리턴 int