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.

103 lines
4.1 KiB

10 years ago
  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\.com/(?:clips|(?:full-)?episodes)/(?P<id>.+?)(\?|#|$))'
  7. _FEED_URL = 'http://www.southparkstudios.com/feeds/video-player/mrss'
  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. class SouthParkEsIE(SouthParkIE):
  20. IE_NAME = 'southpark.cc.com:español'
  21. _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.cc\.com/episodios-en-espanol/(?P<id>.+?)(\?|#|$))'
  22. _LANG = 'es'
  23. _TESTS = [{
  24. 'url': 'http://southpark.cc.com/episodios-en-espanol/s01e01-cartman-consigue-una-sonda-anal#source=351c1323-0b96-402d-a8b9-40d01b2e9bde&position=1&sort=!airdate',
  25. 'info_dict': {
  26. 'title': 'Cartman Consigue Una Sonda Anal',
  27. 'description': 'Cartman Consigue Una Sonda Anal',
  28. },
  29. 'playlist_count': 4,
  30. 'skip': 'Geo-restricted',
  31. }]
  32. class SouthParkDeIE(SouthParkIE):
  33. IE_NAME = 'southpark.de'
  34. _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.de/(?:clips|alle-episoden)/(?P<id>.+?)(\?|#|$))'
  35. _FEED_URL = 'http://www.southpark.de/feeds/video-player/mrss/'
  36. _TESTS = [{
  37. 'url': 'http://www.southpark.de/clips/uygssh/the-government-wont-respect-my-privacy#tab=featured',
  38. 'info_dict': {
  39. 'id': '85487c96-b3b9-4e39-9127-ad88583d9bf2',
  40. 'ext': 'mp4',
  41. 'title': 'South Park|The Government Won\'t Respect My Privacy',
  42. 'description': 'Cartman explains the benefits of "Shitter" to Stan, Kyle and Craig.',
  43. 'timestamp': 1380160800,
  44. 'upload_date': '20130926',
  45. },
  46. }, {
  47. # non-ASCII characters in initial URL
  48. 'url': 'http://www.southpark.de/alle-episoden/s18e09-hashtag-aufwärmen',
  49. 'info_dict': {
  50. 'title': 'Hashtag „Aufwärmen“',
  51. '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.',
  52. },
  53. 'playlist_count': 3,
  54. }, {
  55. # non-ASCII characters in redirect URL
  56. 'url': 'http://www.southpark.de/alle-episoden/s18e09',
  57. 'info_dict': {
  58. 'title': 'Hashtag „Aufwärmen“',
  59. '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.',
  60. },
  61. 'playlist_count': 3,
  62. }]
  63. class SouthParkNlIE(SouthParkIE):
  64. IE_NAME = 'southpark.nl'
  65. _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.nl/(?:clips|(?:full-)?episodes)/(?P<id>.+?)(\?|#|$))'
  66. _FEED_URL = 'http://www.southpark.nl/feeds/video-player/mrss/'
  67. _TESTS = [{
  68. 'url': 'http://www.southpark.nl/full-episodes/s18e06-freemium-isnt-free',
  69. 'info_dict': {
  70. 'title': 'Freemium Isn\'t Free',
  71. 'description': 'Stan is addicted to the new Terrance and Phillip mobile game.',
  72. },
  73. 'playlist_mincount': 3,
  74. }]
  75. class SouthParkDkIE(SouthParkIE):
  76. IE_NAME = 'southparkstudios.dk'
  77. _VALID_URL = r'https?://(?:www\.)?(?P<url>southparkstudios\.dk/(?:clips|full-episodes)/(?P<id>.+?)(\?|#|$))'
  78. _FEED_URL = 'http://www.southparkstudios.dk/feeds/video-player/mrss/'
  79. _TESTS = [{
  80. 'url': 'http://www.southparkstudios.dk/full-episodes/s18e07-grounded-vindaloop',
  81. 'info_dict': {
  82. 'title': 'Grounded Vindaloop',
  83. 'description': 'Butters is convinced he\'s living in a virtual reality.',
  84. },
  85. 'playlist_mincount': 3,
  86. }]