| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-18 20:14:42 +01:00
										 |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2014-12-13 12:24:42 +01:00
										 |  |  | from ..compat import ( | 
					
						
							|  |  |  |     compat_urllib_parse, | 
					
						
							| 
									
										
										
										
											2015-09-15 21:57:30 +06:00
										 |  |  |     compat_urlparse, | 
					
						
							| 
									
										
										
										
											2014-12-13 12:24:42 +01:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  | from ..utils import ( | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |     ExtractorError, | 
					
						
							|  |  |  |     determine_ext, | 
					
						
							| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  |     parse_duration, | 
					
						
							|  |  |  |     unified_strdate, | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |     int_or_none, | 
					
						
							|  |  |  |     xpath_text, | 
					
						
							| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  | class RaiTVIE(InfoExtractor): | 
					
						
							|  |  |  |     _VALID_URL = r'http://(?:.+?\.)?(?:rai\.it|rai\.tv|rainews\.it)/dl/(?:[^/]+/)+media/.+?-(?P<id>[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12})(?:-.+?)?\.html' | 
					
						
							| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  |     _TESTS = [ | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://www.rai.tv/dl/RaiTV/programmi/media/ContentItem-cb27157f-9dd0-4aee-b788-b1f67643a391.html', | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |             'md5': '96382709b61dd64a6b88e0f791e6df4c', | 
					
						
							| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': 'cb27157f-9dd0-4aee-b788-b1f67643a391', | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |                 'ext': 'flv', | 
					
						
							| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  |                 'title': 'Report del 07/04/2014', | 
					
						
							|  |  |  |                 'description': 'md5:f27c544694cacb46a078db84ec35d2d9', | 
					
						
							|  |  |  |                 'upload_date': '20140407', | 
					
						
							|  |  |  |                 'duration': 6160, | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://www.raisport.rai.it/dl/raiSport/media/rassegna-stampa-04a9f4bd-b563-40cf-82a6-aad3529cb4a9.html', | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |             'md5': 'd9751b78eac9710d62c2447b224dea39', | 
					
						
							| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': '04a9f4bd-b563-40cf-82a6-aad3529cb4a9', | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |                 'ext': 'flv', | 
					
						
							| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  |                 'title': 'TG PRIMO TEMPO', | 
					
						
							|  |  |  |                 'upload_date': '20140612', | 
					
						
							|  |  |  |                 'duration': 1758, | 
					
						
							| 
									
										
										
										
											2014-07-01 19:24:18 +07:00
										 |  |  |             }, | 
					
						
							| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  |         }, | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://www.rainews.it/dl/rainews/media/state-of-the-net-Antonella-La-Carpia-regole-virali-7aafdea9-0e5d-49d5-88a6-7e65da67ae13.html', | 
					
						
							|  |  |  |             'md5': '35cf7c229f22eeef43e48b5cf923bef0', | 
					
						
							|  |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': '7aafdea9-0e5d-49d5-88a6-7e65da67ae13', | 
					
						
							|  |  |  |                 'ext': 'mp4', | 
					
						
							|  |  |  |                 'title': 'State of the Net, Antonella La Carpia: regole virali', | 
					
						
							|  |  |  |                 'description': 'md5:b0ba04a324126903e3da7763272ae63c', | 
					
						
							|  |  |  |                 'upload_date': '20140613', | 
					
						
							| 
									
										
										
										
											2014-06-16 18:50:15 +07:00
										 |  |  |             }, | 
					
						
							|  |  |  |             'skip': 'Error 404', | 
					
						
							| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  |         }, | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://www.rai.tv/dl/RaiTV/programmi/media/ContentItem-b4a49761-e0cc-4b14-8736-2729f6f73132-tg2.html', | 
					
						
							|  |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': 'b4a49761-e0cc-4b14-8736-2729f6f73132', | 
					
						
							|  |  |  |                 'ext': 'mp4', | 
					
						
							|  |  |  |                 'title': 'Alluvione in Sardegna e dissesto idrogeologico', | 
					
						
							|  |  |  |                 'description': 'Edizione delle ore 20:30 ', | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |             }, | 
					
						
							|  |  |  |             'skip': 'invalid urls', | 
					
						
							| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2015-04-10 22:41:52 +06:00
										 |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://www.ilcandidato.rai.it/dl/ray/media/Il-Candidato---Primo-episodio-Le-Primarie-28e5525a-b495-45e8-a7c3-bc48ba45d2b6.html', | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |             'md5': '496ab63e420574447f70d02578333437', | 
					
						
							| 
									
										
										
										
											2015-04-10 22:41:52 +06:00
										 |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': '28e5525a-b495-45e8-a7c3-bc48ba45d2b6', | 
					
						
							|  |  |  |                 'ext': 'flv', | 
					
						
							|  |  |  |                 'title': 'Il Candidato - Primo episodio: "Le Primarie"', | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |                 'description': 'md5:364b604f7db50594678f483353164fb8', | 
					
						
							|  |  |  |                 'upload_date': '20140923', | 
					
						
							|  |  |  |                 'duration': 386, | 
					
						
							| 
									
										
										
										
											2015-04-10 22:41:52 +06:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2015-09-15 21:57:30 +06:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  |     ] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |         video_id = self._match_id(url) | 
					
						
							|  |  |  |         media = self._download_json( | 
					
						
							|  |  |  |             'http://www.rai.tv/dl/RaiTV/programmi/media/ContentItem-%s.html?json' % video_id, | 
					
						
							|  |  |  |             video_id, 'Downloading video JSON') | 
					
						
							| 
									
										
										
										
											2015-04-10 22:27:16 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |         thumbnails = [] | 
					
						
							|  |  |  |         for image_type in ('image', 'image_medium', 'image_300'): | 
					
						
							|  |  |  |             thumbnail_url = media.get(image_type) | 
					
						
							|  |  |  |             if thumbnail_url: | 
					
						
							|  |  |  |                 thumbnails.append({ | 
					
						
							|  |  |  |                     'url': thumbnail_url, | 
					
						
							|  |  |  |                 }) | 
					
						
							| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |         subtitles = [] | 
					
						
							|  |  |  |         formats = [] | 
					
						
							|  |  |  |         media_type = media['type'] | 
					
						
							|  |  |  |         if 'Audio' in media_type: | 
					
						
							|  |  |  |             formats.append({ | 
					
						
							|  |  |  |                 'format_id': media.get('formatoAudio'), | 
					
						
							|  |  |  |                 'url': media['audioUrl'], | 
					
						
							|  |  |  |                 'ext': media.get('formatoAudio'), | 
					
						
							|  |  |  |             }) | 
					
						
							|  |  |  |         elif 'Video' in media_type: | 
					
						
							|  |  |  |             def fix_xml(xml): | 
					
						
							|  |  |  |                 return xml.replace(' tag elementi', '').replace('>/', '</') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             relinker = self._download_xml( | 
					
						
							|  |  |  |                 media['mediaUri'] + '&output=43', video_id, transform_source=fix_xml) | 
					
						
							| 
									
										
										
										
											2015-04-10 22:27:16 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |             has_subtitle = False | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             for element in relinker.findall('element'): | 
					
						
							|  |  |  |                 media_url = xpath_text(element, 'url') | 
					
						
							|  |  |  |                 ext = determine_ext(media_url) | 
					
						
							|  |  |  |                 content_type = xpath_text(element, 'content-type') | 
					
						
							|  |  |  |                 if ext == 'm3u8': | 
					
						
							|  |  |  |                     m3u8_formats = self._extract_m3u8_formats( | 
					
						
							|  |  |  |                         media_url, video_id, 'mp4', 'm3u8_native', m3u8_id='hls', | 
					
						
							| 
									
										
										
										
											2015-12-27 21:42:12 +06:00
										 |  |  |                         fatal=False) | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |                     if m3u8_formats: | 
					
						
							|  |  |  |                         formats.extend(m3u8_formats) | 
					
						
							|  |  |  |                 elif ext == 'f4m': | 
					
						
							|  |  |  |                     f4m_formats = self._extract_f4m_formats( | 
					
						
							|  |  |  |                         media_url + '?hdcore=3.7.0&plugin=aasp-3.7.0.39.44', | 
					
						
							| 
									
										
										
										
											2015-12-27 21:42:12 +06:00
										 |  |  |                         video_id, f4m_id='hds', fatal=False) | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |                     if f4m_formats: | 
					
						
							|  |  |  |                         formats.extend(f4m_formats) | 
					
						
							|  |  |  |                 elif ext == 'stl': | 
					
						
							|  |  |  |                     has_subtitle = True | 
					
						
							|  |  |  |                 elif content_type.startswith('video/'): | 
					
						
							|  |  |  |                     bitrate = int_or_none(xpath_text(element, 'bitrate')) | 
					
						
							|  |  |  |                     formats.append({ | 
					
						
							|  |  |  |                         'url': media_url, | 
					
						
							|  |  |  |                         'tbr': bitrate if bitrate > 0 else None, | 
					
						
							|  |  |  |                         'format_id': 'http-%d' % bitrate if bitrate > 0 else 'http', | 
					
						
							|  |  |  |                     }) | 
					
						
							|  |  |  |                 elif content_type.startswith('image/'): | 
					
						
							|  |  |  |                     thumbnails.append({ | 
					
						
							|  |  |  |                         'url': media_url, | 
					
						
							|  |  |  |                     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             self._sort_formats(formats) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if has_subtitle: | 
					
						
							|  |  |  |                 webpage = self._download_webpage(url, video_id) | 
					
						
							|  |  |  |                 subtitles = self._get_subtitles(video_id, webpage) | 
					
						
							| 
									
										
										
										
											2015-04-10 22:27:16 +06:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |             raise ExtractorError('not a media file') | 
					
						
							| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  |             'title': media['name'], | 
					
						
							|  |  |  |             'description': media.get('desc'), | 
					
						
							|  |  |  |             'thumbnails': thumbnails, | 
					
						
							|  |  |  |             'uploader': media.get('author'), | 
					
						
							|  |  |  |             'upload_date': unified_strdate(media.get('date')), | 
					
						
							|  |  |  |             'duration': parse_duration(media.get('length')), | 
					
						
							| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  |             'formats': formats, | 
					
						
							|  |  |  |             'subtitles': subtitles, | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-10 22:27:16 +06:00
										 |  |  |     def _get_subtitles(self, video_id, webpage): | 
					
						
							| 
									
										
										
										
											2014-06-13 23:44:44 +07:00
										 |  |  |         subtitles = {} | 
					
						
							|  |  |  |         m = re.search(r'<meta name="closedcaption" content="(?P<captions>[^"]+)"', webpage) | 
					
						
							|  |  |  |         if m: | 
					
						
							|  |  |  |             captions = m.group('captions') | 
					
						
							|  |  |  |             STL_EXT = '.stl' | 
					
						
							|  |  |  |             SRT_EXT = '.srt' | 
					
						
							|  |  |  |             if captions.endswith(STL_EXT): | 
					
						
							|  |  |  |                 captions = captions[:-len(STL_EXT)] + SRT_EXT | 
					
						
							| 
									
										
										
										
											2015-02-18 20:14:42 +01:00
										 |  |  |             subtitles['it'] = [{ | 
					
						
							|  |  |  |                 'ext': 'srt', | 
					
						
							|  |  |  |                 'url': 'http://www.rai.tv%s' % compat_urllib_parse.quote(captions), | 
					
						
							|  |  |  |             }] | 
					
						
							| 
									
										
										
										
											2014-11-23 20:41:03 +01:00
										 |  |  |         return subtitles | 
					
						
							| 
									
										
										
										
											2015-12-25 15:38:12 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class RaiIE(InfoExtractor): | 
					
						
							|  |  |  |     _VALID_URL = r'http://(?:.+?\.)?(?:rai\.it|rai\.tv|rainews\.it)/dl/.+?-(?P<id>[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12})(?:-.+?)?\.html' | 
					
						
							|  |  |  |     _TESTS = [ | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://www.report.rai.it/dl/Report/puntata/ContentItem-0c7a664b-d0f4-4b2c-8835-3f82e46f433e.html', | 
					
						
							|  |  |  |             'md5': 'e0e7a8a131e249d1aa0ebf270d1d8db7', | 
					
						
							|  |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': '59d69d28-6bb6-409d-a4b5-ed44096560af', | 
					
						
							|  |  |  |                 'ext': 'flv', | 
					
						
							|  |  |  |                 'title': 'Il pacco', | 
					
						
							|  |  |  |                 'description': 'md5:4b1afae1364115ce5d78ed83cd2e5b3a', | 
					
						
							|  |  |  |                 'upload_date': '20141221', | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     ] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @classmethod | 
					
						
							|  |  |  |     def suitable(cls, url): | 
					
						
							|  |  |  |         return False if RaiTVIE.suitable(url) else super(RaiIE, cls).suitable(url) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         video_id = self._match_id(url) | 
					
						
							|  |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         iframe_url = self._search_regex( | 
					
						
							|  |  |  |             [r'<iframe[^>]+src="([^"]*/dl/[^"]+\?iframe\b[^"]*)"', | 
					
						
							|  |  |  |              r'drawMediaRaiTV\(["\'](.+?)["\']'], | 
					
						
							|  |  |  |             webpage, 'iframe') | 
					
						
							|  |  |  |         if not iframe_url.startswith('http'): | 
					
						
							|  |  |  |             iframe_url = compat_urlparse.urljoin(url, iframe_url) | 
					
						
							|  |  |  |         return self.url_result(iframe_url) |