logo

youtube-dl

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

southpark.py (5127B)


  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .mtv import MTVServicesInfoExtractor
  4. class SouthParkIE(MTVServicesInfoExtractor):
  5. IE_NAME = 'southpark.cc.com'
  6. _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark(?:\.cc|studios)\.com/(?:clips|(?:full-)?episodes|collections)/(?P<id>.+?)(\?|#|$))'
  7. _FEED_URL = 'http://feeds.mtvnservices.com/od/feed/intl-mrss-player-feed'
  8. _TESTS = [{
  9. 'url': 'http://southpark.cc.com/clips/104437/bat-daded#tab=featured',
  10. 'info_dict': {
  11. 'id': 'a7bff6c2-ed00-11e0-aca6-0026b9414f30',
  12. 'ext': 'mp4',
  13. 'title': 'South Park|Bat Daded',
  14. 'description': 'Randy disqualifies South Park by getting into a fight with Bat Dad.',
  15. 'timestamp': 1112760000,
  16. 'upload_date': '20050406',
  17. },
  18. }, {
  19. 'url': 'http://southpark.cc.com/collections/7758/fan-favorites/1',
  20. 'only_matching': True,
  21. }, {
  22. 'url': 'https://www.southparkstudios.com/episodes/h4o269/south-park-stunning-and-brave-season-19-ep-1',
  23. 'only_matching': True,
  24. }]
  25. def _get_feed_query(self, uri):
  26. return {
  27. 'accountOverride': 'intl.mtvi.com',
  28. 'arcEp': 'shared.southpark.global',
  29. 'ep': '90877963',
  30. 'imageEp': 'shared.southpark.global',
  31. 'mgid': uri,
  32. }
  33. class SouthParkEsIE(SouthParkIE):
  34. IE_NAME = 'southpark.cc.com:español'
  35. _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.cc\.com/episodios-en-espanol/(?P<id>.+?)(\?|#|$))'
  36. _LANG = 'es'
  37. _TESTS = [{
  38. 'url': 'http://southpark.cc.com/episodios-en-espanol/s01e01-cartman-consigue-una-sonda-anal#source=351c1323-0b96-402d-a8b9-40d01b2e9bde&position=1&sort=!airdate',
  39. 'info_dict': {
  40. 'title': 'Cartman Consigue Una Sonda Anal',
  41. 'description': 'Cartman Consigue Una Sonda Anal',
  42. },
  43. 'playlist_count': 4,
  44. 'skip': 'Geo-restricted',
  45. }]
  46. class SouthParkDeIE(SouthParkIE):
  47. IE_NAME = 'southpark.de'
  48. _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.de/(?:clips|alle-episoden|collections)/(?P<id>.+?)(\?|#|$))'
  49. _FEED_URL = 'http://www.southpark.de/feeds/video-player/mrss/'
  50. _TESTS = [{
  51. 'url': 'http://www.southpark.de/clips/uygssh/the-government-wont-respect-my-privacy#tab=featured',
  52. 'info_dict': {
  53. 'id': '85487c96-b3b9-4e39-9127-ad88583d9bf2',
  54. 'ext': 'mp4',
  55. 'title': 'South Park|The Government Won\'t Respect My Privacy',
  56. 'description': 'Cartman explains the benefits of "Shitter" to Stan, Kyle and Craig.',
  57. 'timestamp': 1380160800,
  58. 'upload_date': '20130926',
  59. },
  60. }, {
  61. # non-ASCII characters in initial URL
  62. 'url': 'http://www.southpark.de/alle-episoden/s18e09-hashtag-aufwärmen',
  63. 'info_dict': {
  64. 'title': 'Hashtag „Aufwärmen“',
  65. 'description': 'Kyle will mit seinem kleinen Bruder Ike Videospiele spielen. Als der nicht mehr mit ihm spielen will, hat Kyle Angst, dass er die Kids von heute nicht mehr versteht.',
  66. },
  67. 'playlist_count': 3,
  68. }, {
  69. # non-ASCII characters in redirect URL
  70. 'url': 'http://www.southpark.de/alle-episoden/s18e09',
  71. 'info_dict': {
  72. 'title': 'Hashtag „Aufwärmen“',
  73. 'description': 'Kyle will mit seinem kleinen Bruder Ike Videospiele spielen. Als der nicht mehr mit ihm spielen will, hat Kyle Angst, dass er die Kids von heute nicht mehr versteht.',
  74. },
  75. 'playlist_count': 3,
  76. }, {
  77. 'url': 'http://www.southpark.de/collections/2476/superhero-showdown/1',
  78. 'only_matching': True,
  79. }]
  80. class SouthParkNlIE(SouthParkIE):
  81. IE_NAME = 'southpark.nl'
  82. _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.nl/(?:clips|(?:full-)?episodes|collections)/(?P<id>.+?)(\?|#|$))'
  83. _FEED_URL = 'http://www.southpark.nl/feeds/video-player/mrss/'
  84. _TESTS = [{
  85. 'url': 'http://www.southpark.nl/full-episodes/s18e06-freemium-isnt-free',
  86. 'info_dict': {
  87. 'title': 'Freemium Isn\'t Free',
  88. 'description': 'Stan is addicted to the new Terrance and Phillip mobile game.',
  89. },
  90. 'playlist_mincount': 3,
  91. }]
  92. class SouthParkDkIE(SouthParkIE):
  93. IE_NAME = 'southparkstudios.dk'
  94. _VALID_URL = r'https?://(?:www\.)?(?P<url>southparkstudios\.(?:dk|nu)/(?:clips|full-episodes|collections)/(?P<id>.+?)(\?|#|$))'
  95. _FEED_URL = 'http://www.southparkstudios.dk/feeds/video-player/mrss/'
  96. _TESTS = [{
  97. 'url': 'http://www.southparkstudios.dk/full-episodes/s18e07-grounded-vindaloop',
  98. 'info_dict': {
  99. 'title': 'Grounded Vindaloop',
  100. 'description': 'Butters is convinced he\'s living in a virtual reality.',
  101. },
  102. 'playlist_mincount': 3,
  103. }, {
  104. 'url': 'http://www.southparkstudios.dk/collections/2476/superhero-showdown/1',
  105. 'only_matching': True,
  106. }, {
  107. 'url': 'http://www.southparkstudios.nu/collections/2476/superhero-showdown/1',
  108. 'only_matching': True,
  109. }]