logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git

pokemon.py (2874B)


  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. from ..utils import (
  6. extract_attributes,
  7. int_or_none,
  8. )
  9. class PokemonIE(InfoExtractor):
  10. _VALID_URL = r'https?://(?:www\.)?pokemon\.com/[a-z]{2}(?:.*?play=(?P<id>[a-z0-9]{32})|/(?:[^/]+/)+(?P<display_id>[^/?#&]+))'
  11. _TESTS = [{
  12. 'url': 'https://www.pokemon.com/us/pokemon-episodes/20_30-the-ol-raise-and-switch/',
  13. 'md5': '2fe8eaec69768b25ef898cda9c43062e',
  14. 'info_dict': {
  15. 'id': 'afe22e30f01c41f49d4f1d9eab5cd9a4',
  16. 'ext': 'mp4',
  17. 'title': 'The Ol’ Raise and Switch!',
  18. 'description': 'md5:7db77f7107f98ba88401d3adc80ff7af',
  19. },
  20. 'add_id': ['LimelightMedia'],
  21. }, {
  22. # no data-video-title
  23. 'url': 'https://www.pokemon.com/fr/episodes-pokemon/films-pokemon/pokemon-lascension-de-darkrai-2008',
  24. 'info_dict': {
  25. 'id': 'dfbaf830d7e54e179837c50c0c6cc0e1',
  26. 'ext': 'mp4',
  27. 'title': "Pokémon : L'ascension de Darkrai",
  28. 'description': 'md5:d1dbc9e206070c3e14a06ff557659fb5',
  29. },
  30. 'add_id': ['LimelightMedia'],
  31. 'params': {
  32. 'skip_download': True,
  33. },
  34. }, {
  35. 'url': 'http://www.pokemon.com/uk/pokemon-episodes/?play=2e8b5c761f1d4a9286165d7748c1ece2',
  36. 'only_matching': True,
  37. }, {
  38. 'url': 'http://www.pokemon.com/fr/episodes-pokemon/18_09-un-hiver-inattendu/',
  39. 'only_matching': True,
  40. }, {
  41. 'url': 'http://www.pokemon.com/de/pokemon-folgen/01_20-bye-bye-smettbo/',
  42. 'only_matching': True,
  43. }]
  44. def _real_extract(self, url):
  45. video_id, display_id = re.match(self._VALID_URL, url).groups()
  46. webpage = self._download_webpage(url, video_id or display_id)
  47. video_data = extract_attributes(self._search_regex(
  48. r'(<[^>]+data-video-id="%s"[^>]*>)' % (video_id if video_id else '[a-z0-9]{32}'),
  49. webpage, 'video data element'))
  50. video_id = video_data['data-video-id']
  51. title = video_data.get('data-video-title') or self._html_search_meta(
  52. 'pkm-title', webpage, ' title', default=None) or self._search_regex(
  53. r'<h1[^>]+\bclass=["\']us-title[^>]+>([^<]+)', webpage, 'title')
  54. return {
  55. '_type': 'url_transparent',
  56. 'id': video_id,
  57. 'url': 'limelight:media:%s' % video_id,
  58. 'title': title,
  59. 'description': video_data.get('data-video-summary'),
  60. 'thumbnail': video_data.get('data-video-poster'),
  61. 'series': 'Pokémon',
  62. 'season_number': int_or_none(video_data.get('data-video-season')),
  63. 'episode': title,
  64. 'episode_number': int_or_none(video_data.get('data-video-episode')),
  65. 'ie_key': 'LimelightMedia',
  66. }