]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/crooksandliars.py
Fix "invalid escape sequences" error on Python 3.6
[yt-dlp.git] / youtube_dl / extractor / crooksandliars.py
CommitLineData
d2272fcf 1from __future__ import unicode_literals
2
d2272fcf 3from .common import InfoExtractor
4from ..utils import (
7a91d1fc
S
5 int_or_none,
6 qualities,
d2272fcf 7)
8
9
10class CrooksAndLiarsIE(InfoExtractor):
7a91d1fc 11 _VALID_URL = r'https?://embed\.crooksandliars\.com/(?:embed|v)/(?P<id>[A-Za-z0-9]+)'
d2272fcf 12 _TESTS = [{
13 'url': 'https://embed.crooksandliars.com/embed/8RUoRhRi',
14 'info_dict': {
7a91d1fc
S
15 'id': '8RUoRhRi',
16 'ext': 'mp4',
ed5641e2 17 'title': 'Fox & Friends Says Protecting Atheists From Discrimination Is Anti-Christian!',
7a91d1fc 18 'description': 'md5:e1a46ad1650e3a5ec7196d432799127f',
ec85ded8 19 'thumbnail': r're:^https?://.*\.jpg',
d2272fcf 20 'timestamp': 1428207000,
7a91d1fc
S
21 'upload_date': '20150405',
22 'uploader': 'Heather',
23 'duration': 236,
d2272fcf 24 }
7a91d1fc
S
25 }, {
26 'url': 'http://embed.crooksandliars.com/v/MTE3MjUtMzQ2MzA',
27 'only_matching': True,
d2272fcf 28 }]
29
30 def _real_extract(self, url):
31 video_id = self._match_id(url)
d2272fcf 32
7a91d1fc
S
33 webpage = self._download_webpage(
34 'http://embed.crooksandliars.com/embed/%s' % video_id, video_id)
35
36 manifest = self._parse_json(
37 self._search_regex(
38 r'var\s+manifest\s*=\s*({.+?})\n', webpage, 'manifest JSON'),
39 video_id)
d2272fcf 40
7a91d1fc
S
41 quality = qualities(('webm_low', 'mp4_low', 'webm_high', 'mp4_high'))
42
43 formats = [{
44 'url': item['url'],
45 'format_id': item['type'],
46 'quality': quality(item['type']),
47 } for item in manifest['flavors'] if item['mime'].startswith('video/')]
48 self._sort_formats(formats)
d2272fcf 49
d2272fcf 50 return {
51 'url': url,
52 'id': video_id,
d2272fcf 53 'title': manifest['title'],
7a91d1fc
S
54 'description': manifest.get('description'),
55 'thumbnail': self._proto_relative_url(manifest.get('poster')),
56 'timestamp': int_or_none(manifest.get('created')),
57 'uploader': manifest.get('author'),
58 'duration': int_or_none(manifest.get('duration')),
d2272fcf 59 'formats': formats,
60 }