youtube-dl

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

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

[aenetworks] extract history topic playlist title

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

diff --git a/youtube_dl/extractor/aenetworks.py b/youtube_dl/extractor/aenetworks.py @@ -8,6 +8,7 @@ from ..utils import ( update_url_query, unescapeHTML, extract_attributes, + get_element_by_attribute, ) from ..compat import ( compat_urlparse, @@ -136,6 +137,7 @@ class HistoryTopicIE(AENetworksBaseIE): 'info_dict': { 'id': 'world-war-i-history', + 'title': 'World War I History', }, 'playlist_mincount': 24, }, { @@ -165,4 +167,4 @@ class HistoryTopicIE(AENetworksBaseIE): 'mbr': 'true', 'switch': 'hls' })) - return self.playlist_result(entries, topic_id) + return self.playlist_result(entries, topic_id, get_element_by_attribute('class', 'show-title', webpage))