]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/howcast.py
[vimeo:watchlater] Fix extraction (Closes #3886)
[yt-dlp.git] / youtube_dl / extractor / howcast.py
CommitLineData
fde56d2f
JMF
1from __future__ import unicode_literals
2
e17d368a 3from .common import InfoExtractor
ddf0f74d 4from ..utils import parse_iso8601
e17d368a
PH
5
6
7class HowcastIE(InfoExtractor):
fde56d2f 8 _VALID_URL = r'https?://(?:www\.)?howcast\.com/videos/(?P<id>\d+)'
6f5ac90c 9 _TEST = {
fde56d2f
JMF
10 'url': 'http://www.howcast.com/videos/390161-How-to-Tie-a-Square-Knot-Properly',
11 'md5': '8b743df908c42f60cf6496586c7f12c3',
12 'info_dict': {
13 'id': '390161',
14 'ext': 'mp4',
fde56d2f 15 'title': 'How to Tie a Square Knot Properly',
ddf0f74d
S
16 'description': 'md5:dbe792e5f6f1489027027bf2eba188a3',
17 'timestamp': 1276081287,
18 'upload_date': '20100609',
19 },
20 'params': {
21 # m3u8 download
22 'skip_download': True,
23 },
6f5ac90c 24 }
e17d368a
PH
25
26 def _real_extract(self, url):
ddf0f74d 27 video_id = self._match_id(url)
e17d368a 28
6a2449df 29 webpage = self._download_webpage(url, video_id)
e17d368a 30
ddf0f74d
S
31 embed_code = self._search_regex(
32 r'<iframe[^>]+src="[^"]+\bembed_code=([^\b]+)\b',
33 webpage, 'ooyala embed code')
e17d368a 34
fde56d2f 35 return {
ddf0f74d
S
36 '_type': 'url_transparent',
37 'ie_key': 'Ooyala',
38 'url': 'ooyala:%s' % embed_code,
fde56d2f 39 'id': video_id,
ddf0f74d
S
40 'timestamp': parse_iso8601(self._html_search_meta(
41 'article:published_time', webpage, 'timestamp')),
fde56d2f 42 }