youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit bef4688c72f9bdb37f261cc2699d6915a5593edc
parent 228c1d685bb6d35b2c1a73e1adbc085c76da6b75
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 31 May 2020 11:10:31 +0700

[jwplatform] Improve embeds extraction (closes #25467)

Diffstat:
Myoutube_dl/extractor/jwplatform.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/jwplatform.py b/youtube_dl/extractor/jwplatform.py @@ -32,7 +32,7 @@ class JWPlatformIE(InfoExtractor): @staticmethod def _extract_urls(webpage): return re.findall( - r'<(?:script|iframe)[^>]+?src=["\']((?:https?:)?//content\.jwplatform\.com/players/[a-zA-Z0-9]{8})', + r'<(?:script|iframe)[^>]+?src=["\']((?:https?:)?//(?:content\.jwplatform|cdn\.jwplayer)\.com/players/[a-zA-Z0-9]{8})', webpage) def _real_extract(self, url):