/// <summary> /// Gets the music player and tag information for a songpath /// </summary> /// <param name="songpath">A fully qualified path to a file</param> /// <returns>A DTO that contains an audio player and tag retriever</returns> static public SongDTO getSongDTO(string songpath) { if (String.IsNullOrEmpty(songpath)) { throw new ArgumentException("Songpath is empty"); } if (!System.IO.File.Exists(songpath)) { throw new ArgumentException("File not found"); } if (songpath.ToLower().EndsWith(".mp3")) { var tagmanager = new MP3(songpath); var player = new MP3Player(); return(new SongDTO() { songPlayer = player, songTag = tagmanager }); } else if (songpath.EndsWith(".wma")) { throw new NotImplementedException(".wma is not an accepted filetype yet"); } else if (songpath.EndsWith(".wav")) { throw new NotImplementedException(".wav is not an accepted filetype yet"); } throw new Exception("We don't support this file type"); }
public static ITagManager LoadSong(string path) { if (path.EndsWith("mp3") || path.EndsWith("MP3")) { MP3 file = new MP3(); file.LoadSong(path); song = file; } else if (path.EndsWith("wma") || path.EndsWith("WMA")) { //current_song = new TagLib. } return(song); }