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

Fix the issue #329 #347

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions YoutubeExtractor/YoutubeExtractor/DownloadUrlResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ private static string GetDecipheredSignature(string htmlPlayerVersion, string si

private static string GetHtml5PlayerVersion(JObject json)
{
var regex = new Regex(@"player-(.+?).js");
var regex = new Regex(@"player_(.+?).js");

string js = json["assets"]["js"].ToString();

Expand Down Expand Up @@ -331,4 +331,4 @@ private class ExtractionInfo
public Uri Uri { get; set; }
}
}
}
}