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.

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