aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/webofstories.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-07-11 04:43:29 +0600
committerSergey M․ <dstftw@gmail.com>2015-07-11 04:43:29 +0600
commitfac54cb426d85572c6928ce0d9e5bf1efb459548 (patch)
treed377b7da36d59e1ba77cae6468f421aa35c3c683 /youtube_dl/extractor/webofstories.py
parent3f19b9b7c111ef0f12b880d8676a346280cc3ef4 (diff)
downloadyoutube-dl-fac54cb426d85572c6928ce0d9e5bf1efb459548.tar.xz
[webofstories:playlist] Improve and add test
Diffstat (limited to 'youtube_dl/extractor/webofstories.py')
-rw-r--r--youtube_dl/extractor/webofstories.py32
1 files changed, 24 insertions, 8 deletions
diff --git a/youtube_dl/extractor/webofstories.py b/youtube_dl/extractor/webofstories.py
index d70e30c00..2037d9b3d 100644
--- a/youtube_dl/extractor/webofstories.py
+++ b/youtube_dl/extractor/webofstories.py
@@ -104,7 +104,14 @@ class WebOfStoriesIE(InfoExtractor):
class WebOfStoriesPlaylistIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?webofstories\.com/playAll/(?P<id>[^/]+)'
- _TESTS = []
+ _TEST = {
+ 'url': 'http://www.webofstories.com/playAll/donald.knuth',
+ 'info_dict': {
+ 'id': 'donald.knuth',
+ 'title': 'Donald Knuth (Scientist)',
+ },
+ 'playlist_mincount': 97,
+ }
def _real_extract(self, url):
playlist_id = self._match_id(url)
@@ -116,10 +123,19 @@ class WebOfStoriesPlaylistIE(InfoExtractor):
for video_number in set(re.findall('href="/playAll/%s\?sId=(\d+)"' % playlist_id, webpage))
]
- title = self._html_search_regex(
- r'<title>([^<]+)\s*-\s*Web\sof\sStories</title>', webpage, 'title')
-
- description = self._html_search_meta(
- 'description', webpage, 'description')
-
- return self.playlist_result(entries, playlist_id, title, description)
+ title = self._search_regex(
+ r'<div id="speakerName">\s*<span>([^<]+)</span>',
+ webpage, 'speaker', default=None)
+ if title:
+ field = self._search_regex(
+ r'<span id="primaryField">([^<]+)</span>',
+ webpage, 'field', default=None)
+ if field:
+ title += ' (%s)' % field
+
+ if not title:
+ title = self._search_regex(
+ r'<title>Play\s+all\s+stories\s*-\s*([^<]+)\s*-\s*Web\s+of\s+Stories</title>',
+ webpage, 'title')
+
+ return self.playlist_result(entries, playlist_id, title)