]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/esri.py
Completely change project name to yt-dlp (#85)
[yt-dlp.git] / yt_dlp / extractor / esri.py
CommitLineData
8b8c1093
SW
1# coding: utf-8
2from __future__ import unicode_literals
3
8b8c1093
SW
4import re
5
6from .common import InfoExtractor
3aa697f9 7from ..compat import compat_urlparse
8b8c1093 8from ..utils import (
3aa697f9
S
9 int_or_none,
10 parse_filesize,
11 unified_strdate,
8b8c1093
SW
12)
13
14
9c21f229 15class EsriVideoIE(InfoExtractor):
8b8c1093
SW
16 _VALID_URL = r'https?://video\.esri\.com/watch/(?P<id>[0-9]+)'
17 _TEST = {
3aa697f9
S
18 'url': 'https://video.esri.com/watch/1124/arcgis-online-_dash_-developing-applications',
19 'md5': 'd4aaf1408b221f1b38227a9bbaeb95bc',
8b8c1093 20 'info_dict': {
3aa697f9 21 'id': '1124',
8b8c1093 22 'ext': 'mp4',
3aa697f9
S
23 'title': 'ArcGIS Online - Developing Applications',
24 'description': 'Jeremy Bartley demonstrates how to develop applications with ArcGIS Online.',
ec85ded8 25 'thumbnail': r're:^https?://.*\.jpg$',
3aa697f9
S
26 'duration': 185,
27 'upload_date': '20120419',
8b8c1093
SW
28 }
29 }
30
31 def _real_extract(self, url):
32 video_id = self._match_id(url)
8b8c1093 33
3aa697f9 34 webpage = self._download_webpage(url, video_id)
8b8c1093 35
3aa697f9
S
36 formats = []
37 for width, height, content in re.findall(
38 r'(?s)<li><strong>(\d+)x(\d+):</strong>(.+?)</li>', webpage):
39 for video_url, ext, filesize in re.findall(
40 r'<a[^>]+href="([^"]+)">([^<]+)&nbsp;\(([^<]+)\)</a>', content):
41 formats.append({
42 'url': compat_urlparse.urljoin(url, video_url),
43 'ext': ext.lower(),
44 'format_id': '%s-%s' % (ext.lower(), height),
45 'width': int(width),
46 'height': int(height),
47 'filesize_approx': parse_filesize(filesize),
48 })
49 self._sort_formats(formats)
50
51 title = self._html_search_meta('title', webpage, 'title')
52 description = self._html_search_meta(
53 'description', webpage, 'description', fatal=False)
54
55 thumbnail = self._html_search_meta('thumbnail', webpage, 'thumbnail', fatal=False)
56 if thumbnail:
57 thumbnail = re.sub(r'_[st]\.jpg$', '_x.jpg', thumbnail)
8b8c1093 58
3aa697f9
S
59 duration = int_or_none(self._search_regex(
60 [r'var\s+videoSeconds\s*=\s*(\d+)', r"'duration'\s*:\s*(\d+)"],
61 webpage, 'duration', fatal=False))
8b8c1093 62
3aa697f9 63 upload_date = unified_strdate(self._html_search_meta(
62bdc9fe 64 'last-modified', webpage, 'upload date', fatal=False))
8b8c1093 65
3aa697f9 66 return {
8b8c1093
SW
67 'id': video_id,
68 'title': title,
3aa697f9
S
69 'description': description,
70 'thumbnail': thumbnail,
71 'duration': duration,
8b8c1093 72 'upload_date': upload_date,
3aa697f9 73 'formats': formats
8b8c1093 74 }