youtube-dl

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

commit 7f04386b89ced3235ea53c6c041dbfff3cbe667b
parent fac39cccd47555af5e9ba2c9f5f36f8ff3b628ad
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu,  6 Apr 2017 02:28:09 +0700

[aenetworks] Add more video URL regexes (closes #12657)

Diffstat:
Myoutube_dl/extractor/aenetworks.py | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/aenetworks.py b/youtube_dl/extractor/aenetworks.py @@ -107,7 +107,10 @@ class AENetworksIE(AENetworksBaseIE): } video_id = self._html_search_meta('aetn:VideoID', webpage) media_url = self._search_regex( - r"media_url\s*=\s*'([^']+)'", webpage, 'video url') + [r"media_url\s*=\s*'(?P<url>[^']+)'", + r'data-media-url=(?P<url>(?:https?:)?//[^\s>]+)', + r'data-media-url=(["\'])(?P<url>(?:(?!\1).)+?)\1'], + webpage, 'video url', group='url') theplatform_metadata = self._download_theplatform_metadata(self._search_regex( r'https?://link.theplatform.com/s/([^?]+)', media_url, 'theplatform_path'), video_id) info = self._parse_theplatform_metadata(theplatform_metadata)