コード例 #1
0
ファイル: PlayerModel.cs プロジェクト: Craftingman/AngelMP3
 public Song(string name, string author, CustomTimeSpan duration, string path)
 {
     Name     = name;
     Author   = author;
     Duration = duration;
     Path     = path;
 }
コード例 #2
0
ファイル: PlayerModel.cs プロジェクト: Craftingman/AngelMP3
        public List <Song> GetSongs()
        {
            List <Song> songList = new List <Song>();

            foreach (FileInfo sf in SongFiles)
            {
                if (!sf.Exists)
                {
                    continue;
                }
                string fullPath = sf.FullName;
                var    tfile    = TagLib.File.Create(@$ "{fullPath}");
                string title    = tfile.Tag.Title != null ?
                                  tfile.Tag.Title : sf.Name;
                string author = tfile.Tag.FirstPerformer != null ?
                                tfile.Tag.FirstPerformer : "Unknown";
                CustomTimeSpan duration = new CustomTimeSpan(tfile.Properties.Duration);
                songList.Add(new Song(title, author, duration, fullPath));
            }
            return(songList);
        }