| 
									
										
										
										
											2015-02-13 15:14:23 +08:00
										 |  |  |  | # coding: utf-8 | 
					
						
							|  |  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-16 04:50:57 +01:00
										 |  |  |  | import re | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-13 15:14:23 +08:00
										 |  |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  |  | from ..compat import compat_urlparse | 
					
						
							| 
									
										
										
										
											2015-02-16 04:50:57 +01:00
										 |  |  |  | from ..utils import ( | 
					
						
							|  |  |  |  |     float_or_none, | 
					
						
							|  |  |  |  |     month_by_abbreviation, | 
					
						
							|  |  |  |  | ) | 
					
						
							| 
									
										
										
										
											2015-02-13 15:14:23 +08:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | class YamIE(InfoExtractor): | 
					
						
							|  |  |  |  |     _VALID_URL = r'http://mymedia.yam.com/m/(?P<id>\d+)' | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     _TESTS = [{ | 
					
						
							|  |  |  |  |         # An audio hosted on Yam | 
					
						
							|  |  |  |  |         'url': 'http://mymedia.yam.com/m/2283921', | 
					
						
							|  |  |  |  |         'md5': 'c011b8e262a52d5473d9c2e3c9963b9c', | 
					
						
							|  |  |  |  |         'info_dict': { | 
					
						
							|  |  |  |  |             'id': '2283921', | 
					
						
							|  |  |  |  |             'ext': 'mp3', | 
					
						
							|  |  |  |  |             'title': '發現 - 趙薇 京華煙雲主題曲', | 
					
						
							|  |  |  |  |             'uploader_id': 'princekt', | 
					
						
							|  |  |  |  |             'upload_date': '20080807', | 
					
						
							|  |  |  |  |             'duration': 313.0, | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  |     }, { | 
					
						
							|  |  |  |  |         # An external video hosted on YouTube | 
					
						
							|  |  |  |  |         'url': 'http://mymedia.yam.com/m/3598173', | 
					
						
							|  |  |  |  |         'md5': '0238ceec479c654e8c2f1223755bf3e9', | 
					
						
							|  |  |  |  |         'info_dict': { | 
					
						
							|  |  |  |  |             'id': 'pJ2Deys283c', | 
					
						
							|  |  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |  |             'upload_date': '20150202', | 
					
						
							|  |  |  |  |             'uploader': '新莊社大瑜伽社', | 
					
						
							|  |  |  |  |             'description': 'md5:f5cc72f0baf259a70fb731654b0d2eff', | 
					
						
							|  |  |  |  |             'uploader_id': '2323agoy', | 
					
						
							|  |  |  |  |             'title': '外婆的澎湖灣KTV-潘安邦', | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  |     }] | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2015-02-16 04:50:57 +01:00
										 |  |  |  |         video_id = self._match_id(url) | 
					
						
							|  |  |  |  |         page = self._download_webpage(url, video_id) | 
					
						
							| 
									
										
										
										
											2015-02-13 15:14:23 +08:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |         # Is it hosted externally on YouTube? | 
					
						
							|  |  |  |  |         youtube_url = self._html_search_regex( | 
					
						
							|  |  |  |  |             r'<embed src="(http://www.youtube.com/[^"]+)"', | 
					
						
							|  |  |  |  |             page, 'YouTube url', default=None) | 
					
						
							|  |  |  |  |         if youtube_url: | 
					
						
							|  |  |  |  |             return self.url_result(youtube_url, 'Youtube') | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         api_page = self._download_webpage( | 
					
						
							| 
									
										
										
										
											2015-02-16 04:50:57 +01:00
										 |  |  |  |             'http://mymedia.yam.com/api/a/?pID=' + video_id, video_id, | 
					
						
							|  |  |  |  |             note='Downloading API page') | 
					
						
							| 
									
										
										
										
											2015-02-13 15:14:23 +08:00
										 |  |  |  |         api_result_obj = compat_urlparse.parse_qs(api_page) | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-16 04:50:57 +01:00
										 |  |  |  |         uploader_id = self._html_search_regex( | 
					
						
							|  |  |  |  |             r'<!-- 發表作者 -->:[\n ]+<a href="/([a-z]+)"', | 
					
						
							|  |  |  |  |             page, 'uploader id', fatal=False) | 
					
						
							| 
									
										
										
										
											2015-02-13 15:14:23 +08:00
										 |  |  |  |         mobj = re.search(r'<!-- 發表於 -->(?P<mon>[A-Z][a-z]{2})  ' + | 
					
						
							|  |  |  |  |                          r'(?P<day>\d{1,2}), (?P<year>\d{4})', page) | 
					
						
							| 
									
										
										
										
											2015-02-16 04:50:57 +01:00
										 |  |  |  |         if mobj: | 
					
						
							|  |  |  |  |             upload_date = '%s%02d%02d' % ( | 
					
						
							|  |  |  |  |                 mobj.group('year'), | 
					
						
							|  |  |  |  |                 month_by_abbreviation(mobj.group('mon')), | 
					
						
							|  |  |  |  |                 int(mobj.group('day'))) | 
					
						
							|  |  |  |  |         else: | 
					
						
							|  |  |  |  |             upload_date = None | 
					
						
							|  |  |  |  |         duration = float_or_none(api_result_obj['totaltime'][0], scale=1000) | 
					
						
							| 
									
										
										
										
											2015-02-13 15:14:23 +08:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |         return { | 
					
						
							| 
									
										
										
										
											2015-02-16 04:50:57 +01:00
										 |  |  |  |             'id': video_id, | 
					
						
							| 
									
										
										
										
											2015-02-13 15:14:23 +08:00
										 |  |  |  |             'url': api_result_obj['mp3file'][0], | 
					
						
							|  |  |  |  |             'title': self._html_search_meta('description', page), | 
					
						
							| 
									
										
										
										
											2015-02-16 04:50:57 +01:00
										 |  |  |  |             'duration': duration, | 
					
						
							|  |  |  |  |             'uploader_id': uploader_id, | 
					
						
							| 
									
										
										
										
											2015-02-13 15:14:23 +08:00
										 |  |  |  |             'upload_date': upload_date, | 
					
						
							|  |  |  |  |         } |