Method | Description | |
---|---|---|
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 ) : |
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.
|
public static GetAlbum ( string path ) : string | ||
path | string | |
return | string |
public static GetArtist ( string path ) : string | ||
path | string | |
return | string |
public static GetDuration ( string path ) : int | ||
path | string | |
return | int |
public static GetGenre ( string path ) : string | ||
path | string | |
return | string |
public static GetMetaData ( string path ) : List |
||
path | string | |
return | List |
public static GetStreamInfo ( string path ) : |
||
path | string | |
return |
public static GetTitle ( string path ) : string | ||
path | string | |
return | string |
public static GetTrackNumber ( string path ) : string | ||
path | string | |
return | string |
public static GetVorbisComment ( string path ) : VorbisComment | ||
path | string | |
return | VorbisComment |
public static GetVorbisField ( string path, string fieldName ) : VorbisCommentValues | ||
path | string | |
fieldName | string | |
return | VorbisCommentValues |