C# Класс FlacLibSharp.StreamInfo

A metadata block that contains information on the actual stream.
Наследование: MetadataBlock
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
LoadBlockData ( byte data ) : void

Loads a new stream info block from the provided data.

StreamInfo ( ) : System

Creates a StreamInfo from scratch, setting some sensible defaults.

Not sure why you would need this now, every FLAC already contains this and this library can't create actual FLAC files.

WriteBlockData ( Stream targetStream ) : void

When overridden in a derived class, will write the data describing this metadata block to the given stream.

Описание методов

LoadBlockData() публичный Метод

Loads a new stream info block from the provided data.
public LoadBlockData ( byte data ) : void
data byte
Результат void

StreamInfo() публичный Метод

Creates a StreamInfo from scratch, setting some sensible defaults.
Not sure why you would need this now, every FLAC already contains this and this library can't create actual FLAC files.
public StreamInfo ( ) : System
Результат System

WriteBlockData() публичный Метод

When overridden in a derived class, will write the data describing this metadata block to the given stream.
public WriteBlockData ( Stream targetStream ) : void
targetStream Stream Stream to write the data to.
Результат void