Skip to content
This repository was archived by the owner on Sep 28, 2020. It is now read-only.

Commit 4045f90

Browse files
committed
Test decipherer -> seems broken
1 parent ade8985 commit 4045f90

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

YoutubeExtractor/ExampleApplication/Program.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,19 @@ private static void DownloadVideo(IEnumerable<VideoInfo> videoInfos)
8989
private static void Main()
9090
{
9191
// Our test youtube link
92-
const string link = "https://www.youtube.com/watch?v=YQHsXMglC9A";
92+
const string link = "https://www.youtube.com/watch?v=D92-DmVmB8Y";
9393

9494
/*
9595
* Get the available video formats.
9696
* We'll work with them in the video and audio download examples.
9797
*/
9898
IEnumerable<VideoInfo> videoInfos = DownloadUrlResolver.GetDownloadUrls(link, false);
9999

100+
foreach (var x in videoInfos)
101+
{
102+
Console.WriteLine(x.DownloadUrl);
103+
}
104+
100105
//DownloadAudio(videoInfos);
101106
DownloadVideo(videoInfos);
102107
}

0 commit comments

Comments
 (0)