]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/crooksandliars.py
1 from __future__
import unicode_literals
3 from .common
import InfoExtractor
10 class CrooksAndLiarsIE(InfoExtractor
):
11 _VALID_URL
= r
'https?://embed\.crooksandliars\.com/(?:embed|v)/(?P<id>[A-Za-z0-9]+)'
13 'url': 'https://embed.crooksandliars.com/embed/8RUoRhRi',
17 'title': 'Fox & Friends Says Protecting Atheists From Discrimination Is Anti-Christian!',
18 'description': 'md5:e1a46ad1650e3a5ec7196d432799127f',
19 'thumbnail': r
're:^https?://.*\.jpg',
20 'timestamp': 1428207000,
21 'upload_date': '20150405',
22 'uploader': 'Heather',
26 'url': 'http://embed.crooksandliars.com/v/MTE3MjUtMzQ2MzA',
27 'only_matching': True,
30 def _real_extract(self
, url
):
31 video_id
= self
._match
_id
(url
)
33 webpage
= self
._download
_webpage
(
34 'http://embed.crooksandliars.com/embed/%s' % video_id
, video_id
)
36 manifest
= self
._parse
_json
(
38 r
'var\s+manifest\s*=\s*({.+?})\n', webpage
, 'manifest JSON'),
41 quality
= qualities(('webm_low', 'mp4_low', 'webm_high', 'mp4_high'))
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
)
53 'title': manifest
['title'],
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')),