C# 클래스 FlacLibSharp.FastFlac

Wrapper class for fast access to some of the FLAC functions
파일 보기 프로젝트 열기: AaronLenoir/flaclibsharp

공개 메소드들

메소드 설명
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