C# Класс SwfDotNet.IO.FlvReader

FlvReader.
Показать файл Открыть проект

Открытые методы

Метод Описание
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