コード例 #1
0
ファイル: Download.cs プロジェクト: hungmol/c4fbook
        public static void DownloadVideo(string watchUrl, string destination)
        {
            //Get links for video, then download
            ObservableCollection <InnerTubeVideo> Videos = InnerTubeService.GetSingleVideo(watchUrl);

            DownloadVideo(Videos[0], destination);
        }
コード例 #2
0
ファイル: Download.cs プロジェクト: hungmol/c4fbook
        public static void DownloadImage(string watchUrl, string destination)
        {
            ObservableCollection <InnerTubeVideo> Videos = InnerTubeService.GetSingleVideo(watchUrl);

            DownloadImage(Videos[0], destination);
        }