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.

223 lines
8.1 KiB

10 years ago
10 years ago
10 years ago
10 years ago
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. from ..utils import (
  6. determine_ext,
  7. clean_html,
  8. get_element_by_attribute,
  9. ExtractorError,
  10. )
  11. class TVPIE(InfoExtractor):
  12. IE_NAME = 'tvp'
  13. IE_DESC = 'Telewizja Polska'
  14. _VALID_URL = r'https?://[^/]+\.tvp\.(?:pl|info)/(?:(?!\d+/)[^/]+/)*(?P<id>\d+)'
  15. _TESTS = [{
  16. 'url': 'http://vod.tvp.pl/194536/i-seria-odc-13',
  17. 'md5': '8aa518c15e5cc32dfe8db400dc921fbb',
  18. 'info_dict': {
  19. 'id': '194536',
  20. 'ext': 'mp4',
  21. 'title': 'Czas honoru, I seria – odc. 13',
  22. 'description': 'md5:76649d2014f65c99477be17f23a4dead',
  23. },
  24. }, {
  25. 'url': 'http://www.tvp.pl/there-can-be-anything-so-i-shortened-it/17916176',
  26. 'md5': 'b0005b542e5b4de643a9690326ab1257',
  27. 'info_dict': {
  28. 'id': '17916176',
  29. 'ext': 'mp4',
  30. 'title': 'TVP Gorzów pokaże filmy studentów z podroży dookoła świata',
  31. 'description': 'TVP Gorzów pokaże filmy studentów z podroży dookoła świata',
  32. },
  33. }, {
  34. # page id is not the same as video id(#7799)
  35. 'url': 'http://vod.tvp.pl/22704887/08122015-1500',
  36. 'md5': 'cf6a4705dfd1489aef8deb168d6ba742',
  37. 'info_dict': {
  38. 'id': '22680786',
  39. 'ext': 'mp4',
  40. 'title': 'Wiadomości, 08.12.2015, 15:00',
  41. },
  42. }, {
  43. 'url': 'http://vod.tvp.pl/seriale/obyczajowe/na-sygnale/sezon-2-27-/odc-39/17834272',
  44. 'only_matching': True,
  45. }, {
  46. 'url': 'http://wiadomosci.tvp.pl/25169746/24052016-1200',
  47. 'only_matching': True,
  48. }, {
  49. 'url': 'http://krakow.tvp.pl/25511623/25lecie-mck-wyjatkowe-miejsce-na-mapie-krakowa',
  50. 'only_matching': True,
  51. }, {
  52. 'url': 'http://teleexpress.tvp.pl/25522307/wierni-wzieli-udzial-w-procesjach',
  53. 'only_matching': True,
  54. }, {
  55. 'url': 'http://sport.tvp.pl/25522165/krychowiak-uspokaja-w-sprawie-kontuzji-dwa-tygodnie-to-maksimum',
  56. 'only_matching': True,
  57. }, {
  58. 'url': 'http://www.tvp.info/25511919/trwa-rewolucja-wladza-zdecydowala-sie-na-pogwalcenie-konstytucji',
  59. 'only_matching': True,
  60. }]
  61. def _real_extract(self, url):
  62. page_id = self._match_id(url)
  63. webpage = self._download_webpage(url, page_id)
  64. video_id = self._search_regex([
  65. r'<iframe[^>]+src="[^"]*?object_id=(\d+)',
  66. "object_id\s*:\s*'(\d+)'"], webpage, 'video id')
  67. return {
  68. '_type': 'url_transparent',
  69. 'url': 'tvp:' + video_id,
  70. 'description': self._og_search_description(webpage, default=None),
  71. 'thumbnail': self._og_search_thumbnail(webpage),
  72. 'ie_key': 'TVPEmbed',
  73. }
  74. class TVPEmbedIE(InfoExtractor):
  75. IE_NAME = 'tvp:embed'
  76. IE_DESC = 'Telewizja Polska'
  77. _VALID_URL = r'(?:tvp:|https?://[^/]+\.tvp\.(?:pl|info)/sess/tvplayer\.php\?.*?object_id=)(?P<id>\d+)'
  78. _TESTS = [{
  79. 'url': 'http://www.tvp.pl/sess/tvplayer.php?object_id=22670268',
  80. 'md5': '8c9cd59d16edabf39331f93bf8a766c7',
  81. 'info_dict': {
  82. 'id': '22670268',
  83. 'ext': 'mp4',
  84. 'title': 'Panorama, 07.12.2015, 15:40',
  85. },
  86. }, {
  87. 'url': 'tvp:22670268',
  88. 'only_matching': True,
  89. }]
  90. def _real_extract(self, url):
  91. video_id = self._match_id(url)
  92. webpage = self._download_webpage(
  93. 'http://www.tvp.pl/sess/tvplayer.php?object_id=%s' % video_id, video_id)
  94. error_massage = get_element_by_attribute('class', 'msg error', webpage)
  95. if error_massage:
  96. raise ExtractorError('%s said: %s' % (
  97. self.IE_NAME, clean_html(error_massage)), expected=True)
  98. title = self._search_regex(
  99. r'name\s*:\s*([\'"])Title\1\s*,\s*value\s*:\s*\1(?P<title>.+?)\1',
  100. webpage, 'title', group='title')
  101. series_title = self._search_regex(
  102. r'name\s*:\s*([\'"])SeriesTitle\1\s*,\s*value\s*:\s*\1(?P<series>.+?)\1',
  103. webpage, 'series', group='series', default=None)
  104. if series_title:
  105. title = '%s, %s' % (series_title, title)
  106. thumbnail = self._search_regex(
  107. r"poster\s*:\s*'([^']+)'", webpage, 'thumbnail', default=None)
  108. video_url = self._search_regex(
  109. r'0:{src:([\'"])(?P<url>.*?)\1', webpage,
  110. 'formats', group='url', default=None)
  111. if not video_url or 'material_niedostepny.mp4' in video_url:
  112. video_url = self._download_json(
  113. 'http://www.tvp.pl/pub/stat/videofileinfo?video_id=%s' % video_id,
  114. video_id)['video_url']
  115. formats = []
  116. video_url_base = self._search_regex(
  117. r'(https?://.+?/video)(?:\.(?:ism|f4m|m3u8)|-\d+\.mp4)',
  118. video_url, 'video base url', default=None)
  119. if video_url_base:
  120. # TODO: <Group> found instead of <AdaptationSet> in MPD manifest.
  121. # It's not mentioned in MPEG-DASH standard. Figure that out.
  122. # formats.extend(self._extract_mpd_formats(
  123. # video_url_base + '.ism/video.mpd',
  124. # video_id, mpd_id='dash', fatal=False))
  125. formats.extend(self._extract_f4m_formats(
  126. video_url_base + '.ism/video.f4m',
  127. video_id, f4m_id='hds', fatal=False))
  128. m3u8_formats = self._extract_m3u8_formats(
  129. video_url_base + '.ism/video.m3u8', video_id,
  130. 'mp4', 'm3u8_native', m3u8_id='hls', fatal=False)
  131. self._sort_formats(m3u8_formats)
  132. m3u8_formats = list(filter(
  133. lambda f: f.get('vcodec') != 'none' and f.get('resolution') != 'multiple',
  134. m3u8_formats))
  135. formats.extend(m3u8_formats)
  136. for i, m3u8_format in enumerate(m3u8_formats, 2):
  137. http_url = '%s-%d.mp4' % (video_url_base, i)
  138. if self._is_valid_url(http_url, video_id):
  139. f = m3u8_format.copy()
  140. f.update({
  141. 'url': http_url,
  142. 'format_id': f['format_id'].replace('hls', 'http'),
  143. 'protocol': 'http',
  144. })
  145. formats.append(f)
  146. else:
  147. formats = [{
  148. 'format_id': 'direct',
  149. 'url': video_url,
  150. 'ext': determine_ext(video_url, 'mp4'),
  151. }]
  152. self._sort_formats(formats)
  153. return {
  154. 'id': video_id,
  155. 'title': title,
  156. 'thumbnail': thumbnail,
  157. 'formats': formats,
  158. }
  159. class TVPSeriesIE(InfoExtractor):
  160. IE_NAME = 'tvp:series'
  161. _VALID_URL = r'https?://vod\.tvp\.pl/(?:[^/]+/){2}(?P<id>[^/]+)/?$'
  162. _TESTS = [{
  163. 'url': 'http://vod.tvp.pl/filmy-fabularne/filmy-za-darmo/ogniem-i-mieczem',
  164. 'info_dict': {
  165. 'title': 'Ogniem i mieczem',
  166. 'id': '4278026',
  167. },
  168. 'playlist_count': 4,
  169. }, {
  170. 'url': 'http://vod.tvp.pl/audycje/podroze/boso-przez-swiat',
  171. 'info_dict': {
  172. 'title': 'Boso przez świat',
  173. 'id': '9329207',
  174. },
  175. 'playlist_count': 86,
  176. }]
  177. def _real_extract(self, url):
  178. display_id = self._match_id(url)
  179. webpage = self._download_webpage(url, display_id, tries=5)
  180. title = self._html_search_regex(
  181. r'(?s) id=[\'"]path[\'"]>(?:.*? / ){2}(.*?)</span>', webpage, 'series')
  182. playlist_id = self._search_regex(r'nodeId:\s*(\d+)', webpage, 'playlist id')
  183. playlist = self._download_webpage(
  184. 'http://vod.tvp.pl/vod/seriesAjax?type=series&nodeId=%s&recommend'
  185. 'edId=0&sort=&page=0&pageSize=10000' % playlist_id, display_id, tries=5,
  186. note='Downloading playlist')
  187. videos_paths = re.findall(
  188. '(?s)class="shortTitle">.*?href="(/[^"]+)', playlist)
  189. entries = [
  190. self.url_result('http://vod.tvp.pl%s' % v_path, ie=TVPIE.ie_key())
  191. for v_path in videos_paths]
  192. return {
  193. '_type': 'playlist',
  194. 'id': playlist_id,
  195. 'display_id': display_id,
  196. 'title': title,
  197. 'entries': entries,
  198. }