예제 #1
0
        public static void WriteLyrics(string singer, string title, TagLib.File audioFile)
        {
            string result = SearchLyrics.FindLyrics(singer, title);

            if (result.Length <= 0)
            {
                return;
            }
            else
            {
                audioFile.Tag.Lyrics = Deserialization.DeserializeLyrics(result);
            }
            audioFile.Save();
        }