[normalboots] Modernize
[youtube-dl] / youtube_dl / extractor / normalboots.py
1 # encoding: utf-8
2 from __future__ import unicode_literals
3
4 import re
5
6 from .common import InfoExtractor
7
8 from ..utils import (
9     unified_strdate,
10 )
11
12
13 class NormalbootsIE(InfoExtractor):
14     _VALID_URL = r'http://(?:www\.)?normalboots\.com/video/(?P<id>[0-9a-z-]*)/?$'
15     _TEST = {
16         'url': 'http://normalboots.com/video/home-alone-games-jontron/',
17         'md5': '8bf6de238915dd501105b44ef5f1e0f6',
18         'info_dict': {
19             'id': 'home-alone-games-jontron',
20             'ext': 'mp4',
21             'title': 'Home Alone Games - JonTron - NormalBoots',
22             'description': 'Jon is late for Christmas. Typical. Thanks to: Paul Ritchey for Co-Writing/Filming: http://www.youtube.com/user/ContinueShow Michael Azzi for Christmas Intro Animation: http://michafrar.tumblr.com/ Jerrod Waters for Christmas Intro Music: http://www.youtube.com/user/xXJerryTerryXx Casey Ormond for ‘Tense Battle Theme’:\xa0http://www.youtube.com/Kiamet/',
23             'uploader': 'JonTron',
24             'upload_date': '20140125',
25         },
26         'params': {
27             # rtmp download
28             'skip_download': True,
29         },
30     }
31
32     def _real_extract(self, url):
33         video_id = self._match_id(url)
34         webpage = self._download_webpage(url, video_id)
35
36         video_uploader = self._html_search_regex(
37             r'Posted\sby\s<a\shref="[A-Za-z0-9/]*">(?P<uploader>[A-Za-z]*)\s</a>',
38             webpage, 'uploader', fatal=False)
39         video_upload_date = unified_strdate(self._html_search_regex(
40             r'<span style="text-transform:uppercase; font-size:inherit;">[A-Za-z]+, (?P<date>.*)</span>',
41             webpage, 'date', fatal=False))
42
43         player_url = self._html_search_regex(
44             r'<iframe\swidth="[0-9]+"\sheight="[0-9]+"\ssrc="(?P<url>[\S]+)"',
45             webpage, 'player url')
46         player_page = self._download_webpage(player_url, video_id)
47         video_url = self._html_search_regex(
48             r"file:\s'(?P<file>[^']+\.mp4)'", player_page, 'file')
49
50         return {
51             'id': video_id,
52             'url': video_url,
53             'title': self._og_search_title(webpage),
54             'description': self._og_search_description(webpage),
55             'thumbnail': self._og_search_thumbnail(webpage),
56             'uploader': video_uploader,
57             'upload_date': video_upload_date,
58         }