You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1056 lines
43 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
11 years ago
  1. from __future__ import unicode_literals
  2. import base64
  3. import datetime
  4. import hashlib
  5. import json
  6. import netrc
  7. import os
  8. import re
  9. import socket
  10. import sys
  11. import time
  12. import xml.etree.ElementTree
  13. from ..compat import (
  14. compat_cookiejar,
  15. compat_HTTPError,
  16. compat_http_client,
  17. compat_urllib_error,
  18. compat_urllib_parse_urlparse,
  19. compat_urlparse,
  20. compat_str,
  21. )
  22. from ..utils import (
  23. age_restricted,
  24. clean_html,
  25. compiled_regex_type,
  26. ExtractorError,
  27. float_or_none,
  28. int_or_none,
  29. RegexNotFoundError,
  30. sanitize_filename,
  31. unescapeHTML,
  32. )
  33. _NO_DEFAULT = object()
  34. class InfoExtractor(object):
  35. """Information Extractor class.
  36. Information extractors are the classes that, given a URL, extract
  37. information about the video (or videos) the URL refers to. This
  38. information includes the real video URL, the video title, author and
  39. others. The information is stored in a dictionary which is then
  40. passed to the YoutubeDL. The YoutubeDL processes this
  41. information possibly downloading the video to the file system, among
  42. other possible outcomes.
  43. The type field determines the the type of the result.
  44. By far the most common value (and the default if _type is missing) is
  45. "video", which indicates a single video.
  46. For a video, the dictionaries must include the following fields:
  47. id: Video identifier.
  48. title: Video title, unescaped.
  49. Additionally, it must contain either a formats entry or a url one:
  50. formats: A list of dictionaries for each format available, ordered
  51. from worst to best quality.
  52. Potential fields:
  53. * url Mandatory. The URL of the video file
  54. * ext Will be calculated from url if missing
  55. * format A human-readable description of the format
  56. ("mp4 container with h264/opus").
  57. Calculated from the format_id, width, height.
  58. and format_note fields if missing.
  59. * format_id A short description of the format
  60. ("mp4_h264_opus" or "19").
  61. Technically optional, but strongly recommended.
  62. * format_note Additional info about the format
  63. ("3D" or "DASH video")
  64. * width Width of the video, if known
  65. * height Height of the video, if known
  66. * resolution Textual description of width and height
  67. * tbr Average bitrate of audio and video in KBit/s
  68. * abr Average audio bitrate in KBit/s
  69. * acodec Name of the audio codec in use
  70. * asr Audio sampling rate in Hertz
  71. * vbr Average video bitrate in KBit/s
  72. * fps Frame rate
  73. * vcodec Name of the video codec in use
  74. * container Name of the container format
  75. * filesize The number of bytes, if known in advance
  76. * filesize_approx An estimate for the number of bytes
  77. * player_url SWF Player URL (used for rtmpdump).
  78. * protocol The protocol that will be used for the actual
  79. download, lower-case.
  80. "http", "https", "rtsp", "rtmp", "rtmpe",
  81. "m3u8", or "m3u8_native".
  82. * preference Order number of this format. If this field is
  83. present and not None, the formats get sorted
  84. by this field, regardless of all other values.
  85. -1 for default (order by other properties),
  86. -2 or smaller for less than default.
  87. < -1000 to hide the format (if there is
  88. another one which is strictly better)
  89. * language_preference Is this in the correct requested
  90. language?
  91. 10 if it's what the URL is about,
  92. -1 for default (don't know),
  93. -10 otherwise, other values reserved for now.
  94. * quality Order number of the video quality of this
  95. format, irrespective of the file format.
  96. -1 for default (order by other properties),
  97. -2 or smaller for less than default.
  98. * source_preference Order number for this video source
  99. (quality takes higher priority)
  100. -1 for default (order by other properties),
  101. -2 or smaller for less than default.
  102. * http_method HTTP method to use for the download.
  103. * http_headers A dictionary of additional HTTP headers
  104. to add to the request.
  105. * http_post_data Additional data to send with a POST
  106. request.
  107. * stretched_ratio If given and not 1, indicates that the
  108. video's pixels are not square.
  109. width : height ratio as float.
  110. * no_resume The server does not support resuming the
  111. (HTTP or RTMP) download. Boolean.
  112. url: Final video URL.
  113. ext: Video filename extension.
  114. format: The video format, defaults to ext (used for --get-format)
  115. player_url: SWF Player URL (used for rtmpdump).
  116. The following fields are optional:
  117. alt_title: A secondary title of the video.
  118. display_id An alternative identifier for the video, not necessarily
  119. unique, but available before title. Typically, id is
  120. something like "4234987", title "Dancing naked mole rats",
  121. and display_id "dancing-naked-mole-rats"
  122. thumbnails: A list of dictionaries, with the following entries:
  123. * "id" (optional, string) - Thumbnail format ID
  124. * "url"
  125. * "preference" (optional, int) - quality of the image
  126. * "width" (optional, int)
  127. * "height" (optional, int)
  128. * "resolution" (optional, string "{width}x{height"},
  129. deprecated)
  130. thumbnail: Full URL to a video thumbnail image.
  131. description: Full video description.
  132. uploader: Full name of the video uploader.
  133. creator: The main artist who created the video.
  134. timestamp: UNIX timestamp of the moment the video became available.
  135. upload_date: Video upload date (YYYYMMDD).
  136. If not explicitly set, calculated from timestamp.
  137. uploader_id: Nickname or id of the video uploader.
  138. location: Physical location where the video was filmed.
  139. subtitles: The subtitle file contents as a dictionary in the format
  140. {language: subtitles}.
  141. duration: Length of the video in seconds, as an integer.
  142. view_count: How many users have watched the video on the platform.
  143. like_count: Number of positive ratings of the video
  144. dislike_count: Number of negative ratings of the video
  145. average_rating: Average rating give by users, the scale used depends on the webpage
  146. comment_count: Number of comments on the video
  147. comments: A list of comments, each with one or more of the following
  148. properties (all but one of text or html optional):
  149. * "author" - human-readable name of the comment author
  150. * "author_id" - user ID of the comment author
  151. * "id" - Comment ID
  152. * "html" - Comment as HTML
  153. * "text" - Plain text of the comment
  154. * "timestamp" - UNIX timestamp of comment
  155. * "parent" - ID of the comment this one is replying to.
  156. Set to "root" to indicate that this is a
  157. comment to the original video.
  158. age_limit: Age restriction for the video, as an integer (years)
  159. webpage_url: The url to the video webpage, if given to youtube-dl it
  160. should allow to get the same result again. (It will be set
  161. by YoutubeDL if it's missing)
  162. categories: A list of categories that the video falls in, for example
  163. ["Sports", "Berlin"]
  164. is_live: True, False, or None (=unknown). Whether this video is a
  165. live stream that goes on instead of a fixed-length video.
  166. Unless mentioned otherwise, the fields should be Unicode strings.
  167. Unless mentioned otherwise, None is equivalent to absence of information.
  168. _type "playlist" indicates multiple videos.
  169. There must be a key "entries", which is a list, an iterable, or a PagedList
  170. object, each element of which is a valid dictionary by this specification.
  171. Additionally, playlists can have "title" and "id" attributes with the same
  172. semantics as videos (see above).
  173. _type "multi_video" indicates that there are multiple videos that
  174. form a single show, for examples multiple acts of an opera or TV episode.
  175. It must have an entries key like a playlist and contain all the keys
  176. required for a video at the same time.
  177. _type "url" indicates that the video must be extracted from another
  178. location, possibly by a different extractor. Its only required key is:
  179. "url" - the next URL to extract.
  180. The key "ie_key" can be set to the class name (minus the trailing "IE",
  181. e.g. "Youtube") if the extractor class is known in advance.
  182. Additionally, the dictionary may have any properties of the resolved entity
  183. known in advance, for example "title" if the title of the referred video is
  184. known ahead of time.
  185. _type "url_transparent" entities have the same specification as "url", but
  186. indicate that the given additional information is more precise than the one
  187. associated with the resolved URL.
  188. This is useful when a site employs a video service that hosts the video and
  189. its technical metadata, but that video service does not embed a useful
  190. title, description etc.
  191. Subclasses of this one should re-define the _real_initialize() and
  192. _real_extract() methods and define a _VALID_URL regexp.
  193. Probably, they should also be added to the list of extractors.
  194. Finally, the _WORKING attribute should be set to False for broken IEs
  195. in order to warn the users and skip the tests.
  196. """
  197. _ready = False
  198. _downloader = None
  199. _WORKING = True
  200. def __init__(self, downloader=None):
  201. """Constructor. Receives an optional downloader."""
  202. self._ready = False
  203. self.set_downloader(downloader)
  204. @classmethod
  205. def suitable(cls, url):
  206. """Receives a URL and returns True if suitable for this IE."""
  207. # This does not use has/getattr intentionally - we want to know whether
  208. # we have cached the regexp for *this* class, whereas getattr would also
  209. # match the superclass
  210. if '_VALID_URL_RE' not in cls.__dict__:
  211. cls._VALID_URL_RE = re.compile(cls._VALID_URL)
  212. return cls._VALID_URL_RE.match(url) is not None
  213. @classmethod
  214. def _match_id(cls, url):
  215. if '_VALID_URL_RE' not in cls.__dict__:
  216. cls._VALID_URL_RE = re.compile(cls._VALID_URL)
  217. m = cls._VALID_URL_RE.match(url)
  218. assert m
  219. return m.group('id')
  220. @classmethod
  221. def working(cls):
  222. """Getter method for _WORKING."""
  223. return cls._WORKING
  224. def initialize(self):
  225. """Initializes an instance (authentication, etc)."""
  226. if not self._ready:
  227. self._real_initialize()
  228. self._ready = True
  229. def extract(self, url):
  230. """Extracts URL information and returns it in list of dicts."""
  231. try:
  232. self.initialize()
  233. return self._real_extract(url)
  234. except ExtractorError:
  235. raise
  236. except compat_http_client.IncompleteRead as e:
  237. raise ExtractorError('A network error has occured.', cause=e, expected=True)
  238. except (KeyError, StopIteration) as e:
  239. raise ExtractorError('An extractor error has occured.', cause=e)
  240. def set_downloader(self, downloader):
  241. """Sets the downloader for this IE."""
  242. self._downloader = downloader
  243. def _real_initialize(self):
  244. """Real initialization process. Redefine in subclasses."""
  245. pass
  246. def _real_extract(self, url):
  247. """Real extraction process. Redefine in subclasses."""
  248. pass
  249. @classmethod
  250. def ie_key(cls):
  251. """A string for getting the InfoExtractor with get_info_extractor"""
  252. return cls.__name__[:-2]
  253. @property
  254. def IE_NAME(self):
  255. return type(self).__name__[:-2]
  256. def _request_webpage(self, url_or_request, video_id, note=None, errnote=None, fatal=True):
  257. """ Returns the response handle """
  258. if note is None:
  259. self.report_download_webpage(video_id)
  260. elif note is not False:
  261. if video_id is None:
  262. self.to_screen('%s' % (note,))
  263. else:
  264. self.to_screen('%s: %s' % (video_id, note))
  265. try:
  266. return self._downloader.urlopen(url_or_request)
  267. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  268. if errnote is False:
  269. return False
  270. if errnote is None:
  271. errnote = 'Unable to download webpage'
  272. errmsg = '%s: %s' % (errnote, compat_str(err))
  273. if fatal:
  274. raise ExtractorError(errmsg, sys.exc_info()[2], cause=err)
  275. else:
  276. self._downloader.report_warning(errmsg)
  277. return False
  278. def _download_webpage_handle(self, url_or_request, video_id, note=None, errnote=None, fatal=True):
  279. """ Returns a tuple (page content as string, URL handle) """
  280. # Strip hashes from the URL (#1038)
  281. if isinstance(url_or_request, (compat_str, str)):
  282. url_or_request = url_or_request.partition('#')[0]
  283. urlh = self._request_webpage(url_or_request, video_id, note, errnote, fatal)
  284. if urlh is False:
  285. assert not fatal
  286. return False
  287. content = self._webpage_read_content(urlh, url_or_request, video_id, note, errnote, fatal)
  288. return (content, urlh)
  289. def _webpage_read_content(self, urlh, url_or_request, video_id, note=None, errnote=None, fatal=True, prefix=None):
  290. content_type = urlh.headers.get('Content-Type', '')
  291. webpage_bytes = urlh.read()
  292. if prefix is not None:
  293. webpage_bytes = prefix + webpage_bytes
  294. m = re.match(r'[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+\s*;\s*charset=(.+)', content_type)
  295. if m:
  296. encoding = m.group(1)
  297. else:
  298. m = re.search(br'<meta[^>]+charset=[\'"]?([^\'")]+)[ /\'">]',
  299. webpage_bytes[:1024])
  300. if m:
  301. encoding = m.group(1).decode('ascii')
  302. elif webpage_bytes.startswith(b'\xff\xfe'):
  303. encoding = 'utf-16'
  304. else:
  305. encoding = 'utf-8'
  306. if self._downloader.params.get('dump_intermediate_pages', False):
  307. try:
  308. url = url_or_request.get_full_url()
  309. except AttributeError:
  310. url = url_or_request
  311. self.to_screen('Dumping request to ' + url)
  312. dump = base64.b64encode(webpage_bytes).decode('ascii')
  313. self._downloader.to_screen(dump)
  314. if self._downloader.params.get('write_pages', False):
  315. try:
  316. url = url_or_request.get_full_url()
  317. except AttributeError:
  318. url = url_or_request
  319. basen = '%s_%s' % (video_id, url)
  320. if len(basen) > 240:
  321. h = '___' + hashlib.md5(basen.encode('utf-8')).hexdigest()
  322. basen = basen[:240 - len(h)] + h
  323. raw_filename = basen + '.dump'
  324. filename = sanitize_filename(raw_filename, restricted=True)
  325. self.to_screen('Saving request to ' + filename)
  326. # Working around MAX_PATH limitation on Windows (see
  327. # http://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx)
  328. if os.name == 'nt':
  329. absfilepath = os.path.abspath(filename)
  330. if len(absfilepath) > 259:
  331. filename = '\\\\?\\' + absfilepath
  332. with open(filename, 'wb') as outf:
  333. outf.write(webpage_bytes)
  334. try:
  335. content = webpage_bytes.decode(encoding, 'replace')
  336. except LookupError:
  337. content = webpage_bytes.decode('utf-8', 'replace')
  338. if ('<title>Access to this site is blocked</title>' in content and
  339. 'Websense' in content[:512]):
  340. msg = 'Access to this webpage has been blocked by Websense filtering software in your network.'
  341. blocked_iframe = self._html_search_regex(
  342. r'<iframe src="([^"]+)"', content,
  343. 'Websense information URL', default=None)
  344. if blocked_iframe:
  345. msg += ' Visit %s for more details' % blocked_iframe
  346. raise ExtractorError(msg, expected=True)
  347. if '<title>The URL you requested has been blocked</title>' in content[:512]:
  348. msg = (
  349. 'Access to this webpage has been blocked by Indian censorship. '
  350. 'Use a VPN or proxy server (with --proxy) to route around it.')
  351. block_msg = self._html_search_regex(
  352. r'</h1><p>(.*?)</p>',
  353. content, 'block message', default=None)
  354. if block_msg:
  355. msg += ' (Message: "%s")' % block_msg.replace('\n', ' ')
  356. raise ExtractorError(msg, expected=True)
  357. return content
  358. def _download_webpage(self, url_or_request, video_id, note=None, errnote=None, fatal=True, tries=1, timeout=5):
  359. """ Returns the data of the page as a string """
  360. success = False
  361. try_count = 0
  362. while success is False:
  363. try:
  364. res = self._download_webpage_handle(url_or_request, video_id, note, errnote, fatal)
  365. success = True
  366. except compat_http_client.IncompleteRead as e:
  367. try_count += 1
  368. if try_count >= tries:
  369. raise e
  370. self._sleep(timeout, video_id)
  371. if res is False:
  372. return res
  373. else:
  374. content, _ = res
  375. return content
  376. def _download_xml(self, url_or_request, video_id,
  377. note='Downloading XML', errnote='Unable to download XML',
  378. transform_source=None, fatal=True):
  379. """Return the xml as an xml.etree.ElementTree.Element"""
  380. xml_string = self._download_webpage(
  381. url_or_request, video_id, note, errnote, fatal=fatal)
  382. if xml_string is False:
  383. return xml_string
  384. if transform_source:
  385. xml_string = transform_source(xml_string)
  386. return xml.etree.ElementTree.fromstring(xml_string.encode('utf-8'))
  387. def _download_json(self, url_or_request, video_id,
  388. note='Downloading JSON metadata',
  389. errnote='Unable to download JSON metadata',
  390. transform_source=None,
  391. fatal=True):
  392. json_string = self._download_webpage(
  393. url_or_request, video_id, note, errnote, fatal=fatal)
  394. if (not fatal) and json_string is False:
  395. return None
  396. return self._parse_json(
  397. json_string, video_id, transform_source=transform_source, fatal=fatal)
  398. def _parse_json(self, json_string, video_id, transform_source=None, fatal=True):
  399. if transform_source:
  400. json_string = transform_source(json_string)
  401. try:
  402. return json.loads(json_string)
  403. except ValueError as ve:
  404. errmsg = '%s: Failed to parse JSON ' % video_id
  405. if fatal:
  406. raise ExtractorError(errmsg, cause=ve)
  407. else:
  408. self.report_warning(errmsg + str(ve))
  409. def report_warning(self, msg, video_id=None):
  410. idstr = '' if video_id is None else '%s: ' % video_id
  411. self._downloader.report_warning(
  412. '[%s] %s%s' % (self.IE_NAME, idstr, msg))
  413. def to_screen(self, msg):
  414. """Print msg to screen, prefixing it with '[ie_name]'"""
  415. self._downloader.to_screen('[%s] %s' % (self.IE_NAME, msg))
  416. def report_extraction(self, id_or_name):
  417. """Report information extraction."""
  418. self.to_screen('%s: Extracting information' % id_or_name)
  419. def report_download_webpage(self, video_id):
  420. """Report webpage download."""
  421. self.to_screen('%s: Downloading webpage' % video_id)
  422. def report_age_confirmation(self):
  423. """Report attempt to confirm age."""
  424. self.to_screen('Confirming age')
  425. def report_login(self):
  426. """Report attempt to log in."""
  427. self.to_screen('Logging in')
  428. # Methods for following #608
  429. @staticmethod
  430. def url_result(url, ie=None, video_id=None):
  431. """Returns a url that points to a page that should be processed"""
  432. # TODO: ie should be the class used for getting the info
  433. video_info = {'_type': 'url',
  434. 'url': url,
  435. 'ie_key': ie}
  436. if video_id is not None:
  437. video_info['id'] = video_id
  438. return video_info
  439. @staticmethod
  440. def playlist_result(entries, playlist_id=None, playlist_title=None, playlist_description=None):
  441. """Returns a playlist"""
  442. video_info = {'_type': 'playlist',
  443. 'entries': entries}
  444. if playlist_id:
  445. video_info['id'] = playlist_id
  446. if playlist_title:
  447. video_info['title'] = playlist_title
  448. if playlist_description:
  449. video_info['description'] = playlist_description
  450. return video_info
  451. def _search_regex(self, pattern, string, name, default=_NO_DEFAULT, fatal=True, flags=0, group=None):
  452. """
  453. Perform a regex search on the given string, using a single or a list of
  454. patterns returning the first matching group.
  455. In case of failure return a default value or raise a WARNING or a
  456. RegexNotFoundError, depending on fatal, specifying the field name.
  457. """
  458. if isinstance(pattern, (str, compat_str, compiled_regex_type)):
  459. mobj = re.search(pattern, string, flags)
  460. else:
  461. for p in pattern:
  462. mobj = re.search(p, string, flags)
  463. if mobj:
  464. break
  465. if not self._downloader.params.get('no_color') and os.name != 'nt' and sys.stderr.isatty():
  466. _name = '\033[0;34m%s\033[0m' % name
  467. else:
  468. _name = name
  469. if mobj:
  470. if group is None:
  471. # return the first matching group
  472. return next(g for g in mobj.groups() if g is not None)
  473. else:
  474. return mobj.group(group)
  475. elif default is not _NO_DEFAULT:
  476. return default
  477. elif fatal:
  478. raise RegexNotFoundError('Unable to extract %s' % _name)
  479. else:
  480. self._downloader.report_warning('unable to extract %s; '
  481. 'please report this issue on http://yt-dl.org/bug' % _name)
  482. return None
  483. def _html_search_regex(self, pattern, string, name, default=_NO_DEFAULT, fatal=True, flags=0, group=None):
  484. """
  485. Like _search_regex, but strips HTML tags and unescapes entities.
  486. """
  487. res = self._search_regex(pattern, string, name, default, fatal, flags, group)
  488. if res:
  489. return clean_html(res).strip()
  490. else:
  491. return res
  492. def _get_login_info(self):
  493. """
  494. Get the the login info as (username, password)
  495. It will look in the netrc file using the _NETRC_MACHINE value
  496. If there's no info available, return (None, None)
  497. """
  498. if self._downloader is None:
  499. return (None, None)
  500. username = None
  501. password = None
  502. downloader_params = self._downloader.params
  503. # Attempt to use provided username and password or .netrc data
  504. if downloader_params.get('username', None) is not None:
  505. username = downloader_params['username']
  506. password = downloader_params['password']
  507. elif downloader_params.get('usenetrc', False):
  508. try:
  509. info = netrc.netrc().authenticators(self._NETRC_MACHINE)
  510. if info is not None:
  511. username = info[0]
  512. password = info[2]
  513. else:
  514. raise netrc.NetrcParseError('No authenticators for %s' % self._NETRC_MACHINE)
  515. except (IOError, netrc.NetrcParseError) as err:
  516. self._downloader.report_warning('parsing .netrc: %s' % compat_str(err))
  517. return (username, password)
  518. def _get_tfa_info(self):
  519. """
  520. Get the two-factor authentication info
  521. TODO - asking the user will be required for sms/phone verify
  522. currently just uses the command line option
  523. If there's no info available, return None
  524. """
  525. if self._downloader is None:
  526. return None
  527. downloader_params = self._downloader.params
  528. if downloader_params.get('twofactor', None) is not None:
  529. return downloader_params['twofactor']
  530. return None
  531. # Helper functions for extracting OpenGraph info
  532. @staticmethod
  533. def _og_regexes(prop):
  534. content_re = r'content=(?:"([^>]+?)"|\'([^>]+?)\')'
  535. property_re = r'(?:name|property)=[\'"]og:%s[\'"]' % re.escape(prop)
  536. template = r'<meta[^>]+?%s[^>]+?%s'
  537. return [
  538. template % (property_re, content_re),
  539. template % (content_re, property_re),
  540. ]
  541. def _og_search_property(self, prop, html, name=None, **kargs):
  542. if name is None:
  543. name = 'OpenGraph %s' % prop
  544. escaped = self._search_regex(self._og_regexes(prop), html, name, flags=re.DOTALL, **kargs)
  545. if escaped is None:
  546. return None
  547. return unescapeHTML(escaped)
  548. def _og_search_thumbnail(self, html, **kargs):
  549. return self._og_search_property('image', html, 'thumbnail url', fatal=False, **kargs)
  550. def _og_search_description(self, html, **kargs):
  551. return self._og_search_property('description', html, fatal=False, **kargs)
  552. def _og_search_title(self, html, **kargs):
  553. return self._og_search_property('title', html, **kargs)
  554. def _og_search_video_url(self, html, name='video url', secure=True, **kargs):
  555. regexes = self._og_regexes('video') + self._og_regexes('video:url')
  556. if secure:
  557. regexes = self._og_regexes('video:secure_url') + regexes
  558. return self._html_search_regex(regexes, html, name, **kargs)
  559. def _og_search_url(self, html, **kargs):
  560. return self._og_search_property('url', html, **kargs)
  561. def _html_search_meta(self, name, html, display_name=None, fatal=False, **kwargs):
  562. if display_name is None:
  563. display_name = name
  564. return self._html_search_regex(
  565. r'''(?isx)<meta
  566. (?=[^>]+(?:itemprop|name|property)=(["\']?)%s\1)
  567. [^>]+?content=(["\'])(?P<content>.*?)\2''' % re.escape(name),
  568. html, display_name, fatal=fatal, group='content', **kwargs)
  569. def _dc_search_uploader(self, html):
  570. return self._html_search_meta('dc.creator', html, 'uploader')
  571. def _rta_search(self, html):
  572. # See http://www.rtalabel.org/index.php?content=howtofaq#single
  573. if re.search(r'(?ix)<meta\s+name="rating"\s+'
  574. r' content="RTA-5042-1996-1400-1577-RTA"',
  575. html):
  576. return 18
  577. return 0
  578. def _media_rating_search(self, html):
  579. # See http://www.tjg-designs.com/WP/metadata-code-examples-adding-metadata-to-your-web-pages/
  580. rating = self._html_search_meta('rating', html)
  581. if not rating:
  582. return None
  583. RATING_TABLE = {
  584. 'safe for kids': 0,
  585. 'general': 8,
  586. '14 years': 14,
  587. 'mature': 17,
  588. 'restricted': 19,
  589. }
  590. return RATING_TABLE.get(rating.lower(), None)
  591. def _family_friendly_search(self, html):
  592. # See http://schema.org/VideoObject
  593. family_friendly = self._html_search_meta('isFamilyFriendly', html)
  594. if not family_friendly:
  595. return None
  596. RATING_TABLE = {
  597. '1': 0,
  598. 'true': 0,
  599. '0': 18,
  600. 'false': 18,
  601. }
  602. return RATING_TABLE.get(family_friendly.lower(), None)
  603. def _twitter_search_player(self, html):
  604. return self._html_search_meta('twitter:player', html,
  605. 'twitter card player')
  606. def _sort_formats(self, formats):
  607. if not formats:
  608. raise ExtractorError('No video formats found')
  609. def _formats_key(f):
  610. # TODO remove the following workaround
  611. from ..utils import determine_ext
  612. if not f.get('ext') and 'url' in f:
  613. f['ext'] = determine_ext(f['url'])
  614. preference = f.get('preference')
  615. if preference is None:
  616. proto = f.get('protocol')
  617. if proto is None:
  618. proto = compat_urllib_parse_urlparse(f.get('url', '')).scheme
  619. preference = 0 if proto in ['http', 'https'] else -0.1
  620. if f.get('ext') in ['f4f', 'f4m']: # Not yet supported
  621. preference -= 0.5
  622. if f.get('vcodec') == 'none': # audio only
  623. if self._downloader.params.get('prefer_free_formats'):
  624. ORDER = ['aac', 'mp3', 'm4a', 'webm', 'ogg', 'opus']
  625. else:
  626. ORDER = ['webm', 'opus', 'ogg', 'mp3', 'aac', 'm4a']
  627. ext_preference = 0
  628. try:
  629. audio_ext_preference = ORDER.index(f['ext'])
  630. except ValueError:
  631. audio_ext_preference = -1
  632. else:
  633. if self._downloader.params.get('prefer_free_formats'):
  634. ORDER = ['flv', 'mp4', 'webm']
  635. else:
  636. ORDER = ['webm', 'flv', 'mp4']
  637. try:
  638. ext_preference = ORDER.index(f['ext'])
  639. except ValueError:
  640. ext_preference = -1
  641. audio_ext_preference = 0
  642. return (
  643. preference,
  644. f.get('language_preference') if f.get('language_preference') is not None else -1,
  645. f.get('quality') if f.get('quality') is not None else -1,
  646. f.get('tbr') if f.get('tbr') is not None else -1,
  647. f.get('filesize') if f.get('filesize') is not None else -1,
  648. f.get('vbr') if f.get('vbr') is not None else -1,
  649. f.get('height') if f.get('height') is not None else -1,
  650. f.get('width') if f.get('width') is not None else -1,
  651. ext_preference,
  652. f.get('abr') if f.get('abr') is not None else -1,
  653. audio_ext_preference,
  654. f.get('fps') if f.get('fps') is not None else -1,
  655. f.get('filesize_approx') if f.get('filesize_approx') is not None else -1,
  656. f.get('source_preference') if f.get('source_preference') is not None else -1,
  657. f.get('format_id'),
  658. )
  659. formats.sort(key=_formats_key)
  660. def _check_formats(self, formats, video_id):
  661. if formats:
  662. formats[:] = filter(
  663. lambda f: self._is_valid_url(
  664. f['url'], video_id,
  665. item='%s video format' % f.get('format_id') if f.get('format_id') else 'video'),
  666. formats)
  667. def _is_valid_url(self, url, video_id, item='video'):
  668. try:
  669. self._request_webpage(url, video_id, 'Checking %s URL' % item)
  670. return True
  671. except ExtractorError as e:
  672. if isinstance(e.cause, compat_HTTPError):
  673. self.report_warning(
  674. '%s URL is invalid, skipping' % item, video_id)
  675. return False
  676. raise
  677. def http_scheme(self):
  678. """ Either "http:" or "https:", depending on the user's preferences """
  679. return (
  680. 'http:'
  681. if self._downloader.params.get('prefer_insecure', False)
  682. else 'https:')
  683. def _proto_relative_url(self, url, scheme=None):
  684. if url is None:
  685. return url
  686. if url.startswith('//'):
  687. if scheme is None:
  688. scheme = self.http_scheme()
  689. return scheme + url
  690. else:
  691. return url
  692. def _sleep(self, timeout, video_id, msg_template=None):
  693. if msg_template is None:
  694. msg_template = '%(video_id)s: Waiting for %(timeout)s seconds'
  695. msg = msg_template % {'video_id': video_id, 'timeout': timeout}
  696. self.to_screen(msg)
  697. time.sleep(timeout)
  698. def _extract_f4m_formats(self, manifest_url, video_id, preference=None, f4m_id=None):
  699. manifest = self._download_xml(
  700. manifest_url, video_id, 'Downloading f4m manifest',
  701. 'Unable to download f4m manifest')
  702. formats = []
  703. manifest_version = '1.0'
  704. media_nodes = manifest.findall('{http://ns.adobe.com/f4m/1.0}media')
  705. if not media_nodes:
  706. manifest_version = '2.0'
  707. media_nodes = manifest.findall('{http://ns.adobe.com/f4m/2.0}media')
  708. for i, media_el in enumerate(media_nodes):
  709. if manifest_version == '2.0':
  710. manifest_url = ('/'.join(manifest_url.split('/')[:-1]) + '/' +
  711. (media_el.attrib.get('href') or media_el.attrib.get('url')))
  712. tbr = int_or_none(media_el.attrib.get('bitrate'))
  713. formats.append({
  714. 'format_id': '-'.join(filter(None, [f4m_id, 'f4m-%d' % (i if tbr is None else tbr)])),
  715. 'url': manifest_url,
  716. 'ext': 'flv',
  717. 'tbr': tbr,
  718. 'width': int_or_none(media_el.attrib.get('width')),
  719. 'height': int_or_none(media_el.attrib.get('height')),
  720. 'preference': preference,
  721. })
  722. self._sort_formats(formats)
  723. return formats
  724. def _extract_m3u8_formats(self, m3u8_url, video_id, ext=None,
  725. entry_protocol='m3u8', preference=None,
  726. m3u8_id=None):
  727. formats = [{
  728. 'format_id': '-'.join(filter(None, [m3u8_id, 'm3u8-meta'])),
  729. 'url': m3u8_url,
  730. 'ext': ext,
  731. 'protocol': 'm3u8',
  732. 'preference': -1,
  733. 'resolution': 'multiple',
  734. 'format_note': 'Quality selection URL',
  735. }]
  736. format_url = lambda u: (
  737. u
  738. if re.match(r'^https?://', u)
  739. else compat_urlparse.urljoin(m3u8_url, u))
  740. m3u8_doc = self._download_webpage(
  741. m3u8_url, video_id,
  742. note='Downloading m3u8 information',
  743. errnote='Failed to download m3u8 information')
  744. last_info = None
  745. last_media = None
  746. kv_rex = re.compile(
  747. r'(?P<key>[a-zA-Z_-]+)=(?P<val>"[^"]+"|[^",]+)(?:,|$)')
  748. for line in m3u8_doc.splitlines():
  749. if line.startswith('#EXT-X-STREAM-INF:'):
  750. last_info = {}
  751. for m in kv_rex.finditer(line):
  752. v = m.group('val')
  753. if v.startswith('"'):
  754. v = v[1:-1]
  755. last_info[m.group('key')] = v
  756. elif line.startswith('#EXT-X-MEDIA:'):
  757. last_media = {}
  758. for m in kv_rex.finditer(line):
  759. v = m.group('val')
  760. if v.startswith('"'):
  761. v = v[1:-1]
  762. last_media[m.group('key')] = v
  763. elif line.startswith('#') or not line.strip():
  764. continue
  765. else:
  766. if last_info is None:
  767. formats.append({'url': format_url(line)})
  768. continue
  769. tbr = int_or_none(last_info.get('BANDWIDTH'), scale=1000)
  770. f = {
  771. 'format_id': '-'.join(filter(None, [m3u8_id, 'm3u8-%d' % (tbr if tbr else len(formats))])),
  772. 'url': format_url(line.strip()),
  773. 'tbr': tbr,
  774. 'ext': ext,
  775. 'protocol': entry_protocol,
  776. 'preference': preference,
  777. }
  778. codecs = last_info.get('CODECS')
  779. if codecs:
  780. # TODO: looks like video codec is not always necessarily goes first
  781. va_codecs = codecs.split(',')
  782. if va_codecs[0]:
  783. f['vcodec'] = va_codecs[0].partition('.')[0]
  784. if len(va_codecs) > 1 and va_codecs[1]:
  785. f['acodec'] = va_codecs[1].partition('.')[0]
  786. resolution = last_info.get('RESOLUTION')
  787. if resolution:
  788. width_str, height_str = resolution.split('x')
  789. f['width'] = int(width_str)
  790. f['height'] = int(height_str)
  791. if last_media is not None:
  792. f['m3u8_media'] = last_media
  793. last_media = None
  794. formats.append(f)
  795. last_info = {}
  796. self._sort_formats(formats)
  797. return formats
  798. # TODO: improve extraction
  799. def _extract_smil_formats(self, smil_url, video_id, fatal=True):
  800. smil = self._download_xml(
  801. smil_url, video_id, 'Downloading SMIL file',
  802. 'Unable to download SMIL file', fatal=fatal)
  803. if smil is False:
  804. assert not fatal
  805. return []
  806. base = smil.find('./head/meta').get('base')
  807. formats = []
  808. rtmp_count = 0
  809. for video in smil.findall('./body/switch/video'):
  810. src = video.get('src')
  811. if not src:
  812. continue
  813. bitrate = int_or_none(video.get('system-bitrate') or video.get('systemBitrate'), 1000)
  814. width = int_or_none(video.get('width'))
  815. height = int_or_none(video.get('height'))
  816. proto = video.get('proto')
  817. if not proto:
  818. if base:
  819. if base.startswith('rtmp'):
  820. proto = 'rtmp'
  821. elif base.startswith('http'):
  822. proto = 'http'
  823. ext = video.get('ext')
  824. if proto == 'm3u8':
  825. formats.extend(self._extract_m3u8_formats(src, video_id, ext))
  826. elif proto == 'rtmp':
  827. rtmp_count += 1
  828. streamer = video.get('streamer') or base
  829. formats.append({
  830. 'url': streamer,
  831. 'play_path': src,
  832. 'ext': 'flv',
  833. 'format_id': 'rtmp-%d' % (rtmp_count if bitrate is None else bitrate),
  834. 'tbr': bitrate,
  835. 'width': width,
  836. 'height': height,
  837. })
  838. self._sort_formats(formats)
  839. return formats
  840. def _live_title(self, name):
  841. """ Generate the title for a live video """
  842. now = datetime.datetime.now()
  843. now_str = now.strftime("%Y-%m-%d %H:%M")
  844. return name + ' ' + now_str
  845. def _int(self, v, name, fatal=False, **kwargs):
  846. res = int_or_none(v, **kwargs)
  847. if 'get_attr' in kwargs:
  848. print(getattr(v, kwargs['get_attr']))
  849. if res is None:
  850. msg = 'Failed to extract %s: Could not parse value %r' % (name, v)
  851. if fatal:
  852. raise ExtractorError(msg)
  853. else:
  854. self._downloader.report_warning(msg)
  855. return res
  856. def _float(self, v, name, fatal=False, **kwargs):
  857. res = float_or_none(v, **kwargs)
  858. if res is None:
  859. msg = 'Failed to extract %s: Could not parse value %r' % (name, v)
  860. if fatal:
  861. raise ExtractorError(msg)
  862. else:
  863. self._downloader.report_warning(msg)
  864. return res
  865. def _set_cookie(self, domain, name, value, expire_time=None):
  866. cookie = compat_cookiejar.Cookie(
  867. 0, name, value, None, None, domain, None,
  868. None, '/', True, False, expire_time, '', None, None, None)
  869. self._downloader.cookiejar.set_cookie(cookie)
  870. def get_testcases(self, include_onlymatching=False):
  871. t = getattr(self, '_TEST', None)
  872. if t:
  873. assert not hasattr(self, '_TESTS'), \
  874. '%s has _TEST and _TESTS' % type(self).__name__
  875. tests = [t]
  876. else:
  877. tests = getattr(self, '_TESTS', [])
  878. for t in tests:
  879. if not include_onlymatching and t.get('only_matching', False):
  880. continue
  881. t['name'] = type(self).__name__[:-len('IE')]
  882. yield t
  883. def is_suitable(self, age_limit):
  884. """ Test whether the extractor is generally suitable for the given
  885. age limit (i.e. pornographic sites are not, all others usually are) """
  886. any_restricted = False
  887. for tc in self.get_testcases(include_onlymatching=False):
  888. if 'playlist' in tc:
  889. tc = tc['playlist'][0]
  890. is_restricted = age_restricted(
  891. tc.get('info_dict', {}).get('age_limit'), age_limit)
  892. if not is_restricted:
  893. return True
  894. any_restricted = any_restricted or is_restricted
  895. return not any_restricted
  896. class SearchInfoExtractor(InfoExtractor):
  897. """
  898. Base class for paged search queries extractors.
  899. They accept urls in the format _SEARCH_KEY(|all|[0-9]):{query}
  900. Instances should define _SEARCH_KEY and _MAX_RESULTS.
  901. """
  902. @classmethod
  903. def _make_valid_url(cls):
  904. return r'%s(?P<prefix>|[1-9][0-9]*|all):(?P<query>[\s\S]+)' % cls._SEARCH_KEY
  905. @classmethod
  906. def suitable(cls, url):
  907. return re.match(cls._make_valid_url(), url) is not None
  908. def _real_extract(self, query):
  909. mobj = re.match(self._make_valid_url(), query)
  910. if mobj is None:
  911. raise ExtractorError('Invalid search query "%s"' % query)
  912. prefix = mobj.group('prefix')
  913. query = mobj.group('query')
  914. if prefix == '':
  915. return self._get_n_results(query, 1)
  916. elif prefix == 'all':
  917. return self._get_n_results(query, self._MAX_RESULTS)
  918. else:
  919. n = int(prefix)
  920. if n <= 0:
  921. raise ExtractorError('invalid download number %s for query "%s"' % (n, query))
  922. elif n > self._MAX_RESULTS:
  923. self._downloader.report_warning('%s returns max %i results (you requested %i)' % (self._SEARCH_KEY, self._MAX_RESULTS, n))
  924. n = self._MAX_RESULTS
  925. return self._get_n_results(query, n)
  926. def _get_n_results(self, query, n):
  927. """Get a specified number of results for a query"""
  928. raise NotImplementedError("This method must be implemented by subclasses")
  929. @property
  930. def SEARCH_KEY(self):
  931. return self._SEARCH_KEY