1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2026-05-29 16:55:24 +00:00
Files
youtube-dl/youtube_dl/extractor/movieclips.py
T

41 lines
1.6 KiB
Python
Raw Normal View History

2015-11-08 16:56:20 +06:00
# coding: utf-8
2014-08-23 17:44:56 +07:00
from __future__ import unicode_literals
from .common import InfoExtractor
from ..utils import sanitized_Request
2014-08-23 17:44:56 +07:00
class MovieClipsIE(InfoExtractor):
2015-11-08 11:49:51 +01:00
_VALID_URL = r'https?://(?:www.)?movieclips\.com/videos/(?P<id>[^/?#]+)'
2014-08-23 17:44:56 +07:00
_TEST = {
2015-11-08 11:49:51 +01:00
'url': 'http://www.movieclips.com/videos/warcraft-trailer-1-561180739597?autoPlay=true&playlistId=5',
2014-08-23 17:44:56 +07:00
'info_dict': {
2015-11-08 11:49:51 +01:00
'id': 'pKIGmG83AqD9',
'display_id': 'warcraft-trailer-1-561180739597',
2014-08-23 17:44:56 +07:00
'ext': 'mp4',
2015-11-08 11:49:51 +01:00
'title': 'Warcraft Trailer 1',
'description': 'Watch Trailer 1 from Warcraft (2016). Legendarys WARCRAFT is a 3D epic adventure of world-colliding conflict based.',
2014-08-23 17:44:56 +07:00
'thumbnail': 're:^https?://.*\.jpg$',
},
2015-11-08 11:49:51 +01:00
'add_ie': ['ThePlatform'],
2014-08-23 17:44:56 +07:00
}
def _real_extract(self, url):
2015-11-08 11:49:51 +01:00
display_id = self._match_id(url)
2014-08-23 17:44:56 +07:00
req = sanitized_Request(url)
2015-11-08 11:49:51 +01:00
# it doesn't work if it thinks the browser it's too old
req.add_header('User-Agent', 'Mozilla/5.0 (X11; Linux x86_64; rv:10.0) Gecko/20150101 Firefox/43.0 (Chrome)')
webpage = self._download_webpage(req, display_id)
theplatform_link = self._html_search_regex(r'src="(http://player.theplatform.com/p/.*?)"', webpage, 'theplatform link')
title = self._html_search_regex(r'<title[^>]*>([^>]+)-\s*\d+\s*|\s*Movieclips.com</title>', webpage, 'title')
description = self._html_search_meta('description', webpage)
2014-08-23 17:44:56 +07:00
return {
2015-11-08 11:49:51 +01:00
'_type': 'url_transparent',
'url': theplatform_link,
2014-08-23 17:44:56 +07:00
'title': title,
2015-11-08 11:49:51 +01:00
'display_id': display_id,
2014-08-23 17:44:56 +07:00
'description': description,
}