Herkes faydalansın bu koddan bence
Not: yukardaki örnek linke göre yapıldı, çalışma garantisi vermiyorum
static List<string> parseUrl(string url)
{
List<string> urls = new List<string>();
WebClient web = new WebClient();
string html = web.DownloadString(url);
foreach(Match video in Regex.Matches(html, "url\\d+\":\"(.*?)\""))
urls.Add(video.Groups[1].Value.Replace("\\/", "/"));
return urls;
}