C# 클래스 SwfDotNet.IO.FlvReader

FlvReader.
파일 보기 프로젝트 열기: bladecoding/SwfExport

공개 메소드들

메소드 설명
FlvReader ( Stream stream ) : System

Creates a new FlvReader instance.

FlvReader ( string path ) : System

Creates a new FlvReader instance.

FlvReader ( string path, bool useBuffer ) : System

Creates a new SwfReader instance. If useBuffer is true, all the content of the FLV file is readed first and is parsed from the memory after. If useBuffer is false, the FLV is parsed directly from the file stream. Use a buffer is faster to parse, but use more memory.

ReadFlv ( ) : Flv

Reads the FLV.

비공개 메소드들

메소드 설명
Init ( string path, bool useBuffer ) : void

Inits the stream reading process.

ReadTag ( ) : FlvBaseTag

Reads the tag.

메소드 상세

FlvReader() 공개 메소드

Creates a new FlvReader instance.
public FlvReader ( Stream stream ) : System
stream Stream Stream.
리턴 System

FlvReader() 공개 메소드

Creates a new FlvReader instance.
public FlvReader ( string path ) : System
path string Path.
리턴 System

FlvReader() 공개 메소드

Creates a new SwfReader instance. If useBuffer is true, all the content of the FLV file is readed first and is parsed from the memory after. If useBuffer is false, the FLV is parsed directly from the file stream. Use a buffer is faster to parse, but use more memory.
public FlvReader ( string path, bool useBuffer ) : System
path string String path of the local flv file
useBuffer bool Use buffer.
리턴 System

ReadFlv() 공개 메소드

Reads the FLV.
public ReadFlv ( ) : Flv
리턴 Flv