]> Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/lrt.py
Imported Upstream version 2016.02.22
[youtubedl] / youtube_dl / extractor / lrt.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 from .common import InfoExtractor
5 from ..utils import (
6 int_or_none,
7 parse_duration,
8 remove_end,
9 )
10
11
12 class LRTIE(InfoExtractor):
13 IE_NAME = 'lrt.lt'
14 _VALID_URL = r'https?://(?:www\.)?lrt\.lt/mediateka/irasas/(?P<id>[0-9]+)'
15 _TEST = {
16 'url': 'http://www.lrt.lt/mediateka/irasas/54391/',
17 'info_dict': {
18 'id': '54391',
19 'ext': 'mp4',
20 'title': 'Septynios Kauno dienos',
21 'description': 'md5:24d84534c7dc76581e59f5689462411a',
22 'duration': 1783,
23 'view_count': int,
24 'like_count': int,
25 },
26 'params': {
27 'skip_download': True, # m3u8 download
28 },
29 }
30
31 def _real_extract(self, url):
32 video_id = self._match_id(url)
33 webpage = self._download_webpage(url, video_id)
34
35 title = remove_end(self._og_search_title(webpage), ' - LRT')
36 m3u8_url = self._search_regex(
37 r'file\s*:\s*(["\'])(?P<url>.+?)\1\s*\+\s*location\.hash\.substring\(1\)',
38 webpage, 'm3u8 url', group='url')
39 formats = self._extract_m3u8_formats(m3u8_url, video_id, 'mp4')
40
41 thumbnail = self._og_search_thumbnail(webpage)
42 description = self._og_search_description(webpage)
43 duration = parse_duration(self._search_regex(
44 r'var\s+record_len\s*=\s*(["\'])(?P<duration>[0-9]+:[0-9]+:[0-9]+)\1',
45 webpage, 'duration', default=None, group='duration'))
46
47 view_count = int_or_none(self._html_search_regex(
48 r'<div[^>]+class=(["\']).*?record-desc-seen.*?\1[^>]*>(?P<count>.+?)</div>',
49 webpage, 'view count', fatal=False, group='count'))
50 like_count = int_or_none(self._search_regex(
51 r'<span[^>]+id=(["\'])flikesCount.*?\1>(?P<count>\d+)<',
52 webpage, 'like count', fatal=False, group='count'))
53
54 return {
55 'id': video_id,
56 'title': title,
57 'formats': formats,
58 'thumbnail': thumbnail,
59 'description': description,
60 'duration': duration,
61 'view_count': view_count,
62 'like_count': like_count,
63 }