namespace FileFlows.AudioNodes { public class AudioInfo { /// /// Gets or sets the title of the audio file. /// public string Title { get; set; } /// /// Gets or sets the artist of the audio file. /// public string Artist { get; set; } /// /// Gets or sets the album of the audio file. /// public string Album { get; set; } /// /// Gets or sets the track number of the audio file. /// public int Track { get; set; } /// /// Gets or sets the language number of the audio file. /// public string Language { get; set; } /// /// Gets or sets the disc number of the audio file. /// public int Disc { get; set; } /// /// Gets or sets the total number of discs in the album. /// public int TotalDiscs { get; set; } /// /// Gets or sets the total number of tracks in the album. /// public int TotalTracks { get; set; } /// /// Gets or sets the release date of the audio file. /// public DateTime Date { get; set; } /// /// Gets or sets the genre of the audio file. /// public string[] Genres { get; set; } /// /// Gets or sets duration in SECONDS /// public long Duration { get; set; } /// /// Gets or sets the bitrate (in bytes per second) /// public long Bitrate { get; set; } public string Encoder { get; set; } public string Codec { get; set; } public long Channels { get; set; } public long Frequency { get; set; } } }