public async Task <Tuple <string, string, string> > CopySong(string songFile, string hashed)
        {
            string songFileExt = Path.GetExtension(songFile);

            File.Copy(songFile, @System.IO.Path.GetTempPath() + @"\\MusicBeeChromecast\" + hashed + songFileExt, true);

            string imageFile = mbApiInterface.Library_GetArtworkUrl(songFile, 0);

            string imageFileExt = ".jpg";

            if (imageFile != null)
            {
                File.Copy(imageFile, @System.IO.Path.GetTempPath() + @"\\MusicBeeChromecast\" + hashed + imageFileExt, true);
            }

            return(Tuple.Create(hashed, songFileExt, imageFileExt));
        }