Esempio n. 1
0
        public static void DownloadVideo(string watchUrl, string destination)
        {
            //Get links for video, then download
            ObservableCollection <InnerTubeVideo> Videos = InnerTubeService.GetSingleVideo(watchUrl);

            DownloadVideo(Videos[0], destination);
        }
Esempio n. 2
0
        public static void DownloadImage(string watchUrl, string destination)
        {
            ObservableCollection <InnerTubeVideo> Videos = InnerTubeService.GetSingleVideo(watchUrl);

            DownloadImage(Videos[0], destination);
        }