youtube-dl

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

commit 4c7821227c54836a17d9c02d4f8d3dcbd97105fc
parent 42362fdb5e780611b7054e52eb28621f5a9fd7ba
Author: Remita Amine <remitamine@gmail.com>
Date:   Wed, 29 Jun 2016 16:03:32 +0100

[aenetworks:historytopic] fix topic video url

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

diff --git a/youtube_dl/extractor/aenetworks.py b/youtube_dl/extractor/aenetworks.py @@ -161,7 +161,7 @@ class HistoryTopicIE(AENetworksBaseIE): for episode_item in re.findall(r'<a.+?data-release-url="[^"]+"[^>]*>', webpage): video_attributes = extract_attributes(episode_item) entries.append(self.theplatform_url_result( - video_attributes['data-href'], video_attributes['data-id'], { + video_attributes['data-release-url'], video_attributes['data-id'], { 'mbr': 'true', 'switch': 'hls' }))