]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/vice.py
[youtube] Extract start_time
[yt-dlp.git] / youtube_dl / extractor / vice.py
CommitLineData
1fe8fb8c 1from __future__ import unicode_literals
1fe8fb8c
JMF
2
3from .common import InfoExtractor
4from .ooyala import OoyalaIE
5from ..utils import ExtractorError
6
7
8class ViceIE(InfoExtractor):
18ae46ad 9 _VALID_URL = r'https?://(?:.+?\.)?vice\.com/(?:[^/]+/)+(?P<id>.+)'
1fe8fb8c 10
7a4a945f 11 _TESTS = [
12 {
13 'url': 'http://www.vice.com/Fringes/cowboy-capitalists-part-1',
14 'info_dict': {
15 'id': '43cW1mYzpia9IlestBjVpd23Yu3afAfp',
16 'ext': 'mp4',
17 'title': 'VICE_COWBOYCAPITALISTS_PART01_v1_VICE_WM_1080p.mov',
18 },
19 'params': {
20 # Requires ffmpeg (m3u8 manifest)
21 'skip_download': True,
22 },
23 }, {
24 'url': 'https://news.vice.com/video/experimenting-on-animals-inside-the-monkey-lab',
65c2b21d 25 'only_matching': True,
7a4a945f 26 }
27 ]
1fe8fb8c
JMF
28
29 def _real_extract(self, url):
18ae46ad
S
30 video_id = self._match_id(url)
31 webpage = self._download_webpage(url, video_id)
1fe8fb8c
JMF
32 try:
33 embed_code = self._search_regex(
34 r'embedCode=([^&\'"]+)', webpage,
35 'ooyala embed code')
36 ooyala_url = OoyalaIE._url_for_embed_code(embed_code)
1fe8fb8c
JMF
37 except ExtractorError:
38 raise ExtractorError('The page doesn\'t contain a video', expected=True)
39 return self.url_result(ooyala_url, ie='Ooyala')