C# Класс FlacLibSharp.FastFlac

Wrapper class for fast access to some of the FLAC functions
Показать файл Открыть проект

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

Метод Описание
GetAlbum ( string path ) : string

Gets the first album name.

GetArtist ( string path ) : string

Gets the first artist of the track.

GetDuration ( string path ) : int

Gets the duration of the track in seconds.

GetGenre ( string path ) : string

Gets the first genre of the track.

GetMetaData ( string path ) : List

Gives you all available metadata blocks in the flac file.

GetStreamInfo ( string path ) : StreamInfo

Gives you the StreamInfo metadata

GetTitle ( string path ) : string

Gets the first title of the track.

GetTrackNumber ( string path ) : string

Gets the first track number.

GetVorbisComment ( string path ) : VorbisComment

Gives you the vorbis comment metadata (ID3V2 tags).

GetVorbisField ( string path, string fieldName ) : VorbisCommentValues

Gets the specific vorbis field name (example = ARTIST) if it is available.

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

GetAlbum() публичный статический Метод

Gets the first album name.
public static GetAlbum ( string path ) : string
path string
Результат string

GetArtist() публичный статический Метод

Gets the first artist of the track.
public static GetArtist ( string path ) : string
path string
Результат string

GetDuration() публичный статический Метод

Gets the duration of the track in seconds.
public static GetDuration ( string path ) : int
path string
Результат int

GetGenre() публичный статический Метод

Gets the first genre of the track.
public static GetGenre ( string path ) : string
path string
Результат string

GetMetaData() публичный статический Метод

Gives you all available metadata blocks in the flac file.
public static GetMetaData ( string path ) : List
path string
Результат List

GetStreamInfo() публичный статический Метод

Gives you the StreamInfo metadata
public static GetStreamInfo ( string path ) : StreamInfo
path string
Результат StreamInfo

GetTitle() публичный статический Метод

Gets the first title of the track.
public static GetTitle ( string path ) : string
path string
Результат string

GetTrackNumber() публичный статический Метод

Gets the first track number.
public static GetTrackNumber ( string path ) : string
path string
Результат string

GetVorbisComment() публичный статический Метод

Gives you the vorbis comment metadata (ID3V2 tags).
public static GetVorbisComment ( string path ) : VorbisComment
path string
Результат VorbisComment

GetVorbisField() публичный статический Метод

Gets the specific vorbis field name (example = ARTIST) if it is available.
public static GetVorbisField ( string path, string fieldName ) : VorbisCommentValues
path string
fieldName string
Результат VorbisCommentValues