Beispiel #1
0
        public async Task <VideoViewModel> DownloadVideoMetadata(string videoAddress)
        {
            var model = await _yt.GetVideoMetadata(videoAddress);

            model = await _yt.DownloadMp3(model, BasePath);

            return(model);
        }