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.

389 lines
15 KiB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
11 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
  1. # encoding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. import json
  5. import hashlib
  6. import uuid
  7. from .common import InfoExtractor
  8. from ..compat import (
  9. compat_urllib_parse,
  10. compat_urllib_request,
  11. )
  12. from ..utils import (
  13. ExtractorError,
  14. int_or_none,
  15. unified_strdate,
  16. )
  17. class SmotriIE(InfoExtractor):
  18. IE_DESC = 'Smotri.com'
  19. IE_NAME = 'smotri'
  20. _VALID_URL = r'^https?://(?:www\.)?(?:smotri\.com/video/view/\?id=|pics\.smotri\.com/(?:player|scrubber_custom8)\.swf\?file=)(?P<id>v(?P<realvideoid>[0-9]+)[a-z0-9]{4})'
  21. _NETRC_MACHINE = 'smotri'
  22. _TESTS = [
  23. # real video id 2610366
  24. {
  25. 'url': 'http://smotri.com/video/view/?id=v261036632ab',
  26. 'md5': '2a7b08249e6f5636557579c368040eb9',
  27. 'info_dict': {
  28. 'id': 'v261036632ab',
  29. 'ext': 'mp4',
  30. 'title': 'катастрофа с камер видеонаблюдения',
  31. 'uploader': 'rbc2008',
  32. 'uploader_id': 'rbc08',
  33. 'upload_date': '20131118',
  34. 'thumbnail': 'http://frame6.loadup.ru/8b/a9/2610366.3.3.jpg',
  35. },
  36. },
  37. # real video id 57591
  38. {
  39. 'url': 'http://smotri.com/video/view/?id=v57591cb20',
  40. 'md5': '830266dfc21f077eac5afd1883091bcd',
  41. 'info_dict': {
  42. 'id': 'v57591cb20',
  43. 'ext': 'flv',
  44. 'title': 'test',
  45. 'uploader': 'Support Photofile@photofile',
  46. 'uploader_id': 'support-photofile',
  47. 'upload_date': '20070704',
  48. 'thumbnail': 'http://frame4.loadup.ru/03/ed/57591.2.3.jpg',
  49. },
  50. },
  51. # video-password
  52. {
  53. 'url': 'http://smotri.com/video/view/?id=v1390466a13c',
  54. 'md5': 'f6331cef33cad65a0815ee482a54440b',
  55. 'info_dict': {
  56. 'id': 'v1390466a13c',
  57. 'ext': 'mp4',
  58. 'title': 'TOCCA_A_NOI_-_LE_COSE_NON_VANNO_CAMBIAMOLE_ORA-1',
  59. 'uploader': 'timoxa40',
  60. 'uploader_id': 'timoxa40',
  61. 'upload_date': '20100404',
  62. 'thumbnail': 'http://frame7.loadup.ru/af/3f/1390466.3.3.jpg',
  63. },
  64. 'params': {
  65. 'videopassword': 'qwerty',
  66. },
  67. 'skip': 'Video is not approved by moderator',
  68. },
  69. # age limit + video-password
  70. {
  71. 'url': 'http://smotri.com/video/view/?id=v15408898bcf',
  72. 'md5': '91e909c9f0521adf5ee86fbe073aad70',
  73. 'info_dict': {
  74. 'id': 'v15408898bcf',
  75. 'ext': 'flv',
  76. 'title': 'этот ролик не покажут по ТВ',
  77. 'uploader': 'zzxxx',
  78. 'uploader_id': 'ueggb',
  79. 'upload_date': '20101001',
  80. 'thumbnail': 'http://frame3.loadup.ru/75/75/1540889.1.3.jpg',
  81. 'age_limit': 18,
  82. },
  83. 'params': {
  84. 'videopassword': '333'
  85. },
  86. 'skip': 'Video is not approved by moderator',
  87. },
  88. # not approved by moderator, but available
  89. {
  90. 'url': 'http://smotri.com/video/view/?id=v28888533b73',
  91. 'md5': 'f44bc7adac90af518ef1ecf04893bb34',
  92. 'info_dict': {
  93. 'id': 'v28888533b73',
  94. 'ext': 'mp4',
  95. 'title': 'Russian Spies Killed By ISIL Child Soldier',
  96. 'uploader': 'Mopeder',
  97. 'uploader_id': 'mopeder',
  98. 'duration': 71,
  99. 'thumbnail': 'http://frame9.loadup.ru/d7/32/2888853.2.3.jpg',
  100. 'upload_date': '20150114',
  101. },
  102. },
  103. # swf player
  104. {
  105. 'url': 'http://pics.smotri.com/scrubber_custom8.swf?file=v9188090500',
  106. 'md5': '31099eeb4bc906712c5f40092045108d',
  107. 'info_dict': {
  108. 'id': 'v9188090500',
  109. 'ext': 'mp4',
  110. 'title': 'Shakira - Don\'t Bother',
  111. 'uploader': 'HannahL',
  112. 'uploader_id': 'lisaha95',
  113. 'upload_date': '20090331',
  114. 'thumbnail': 'http://frame8.loadup.ru/44/0b/918809.7.3.jpg',
  115. },
  116. },
  117. ]
  118. @classmethod
  119. def _extract_url(cls, webpage):
  120. mobj = re.search(
  121. r'<embed[^>]src=(["\'])(?P<url>http://pics\.smotri\.com/(?:player|scrubber_custom8)\.swf\?file=v.+?\1)',
  122. webpage)
  123. if mobj is not None:
  124. return mobj.group('url')
  125. mobj = re.search(
  126. r'''(?x)<div\s+class="video_file">http://smotri\.com/video/download/file/[^<]+</div>\s*
  127. <div\s+class="video_image">[^<]+</div>\s*
  128. <div\s+class="video_id">(?P<id>[^<]+)</div>''', webpage)
  129. if mobj is not None:
  130. return 'http://smotri.com/video/view/?id=%s' % mobj.group('id')
  131. def _search_meta(self, name, html, display_name=None):
  132. if display_name is None:
  133. display_name = name
  134. return self._html_search_meta(name, html, display_name)
  135. def _real_extract(self, url):
  136. video_id = self._match_id(url)
  137. video_form = {
  138. 'ticket': video_id,
  139. 'video_url': '1',
  140. 'frame_url': '1',
  141. 'devid': 'LoadupFlashPlayer',
  142. 'getvideoinfo': '1',
  143. }
  144. request = compat_urllib_request.Request(
  145. 'http://smotri.com/video/view/url/bot/', compat_urllib_parse.urlencode(video_form))
  146. request.add_header('Content-Type', 'application/x-www-form-urlencoded')
  147. video = self._download_json(request, video_id, 'Downloading video JSON')
  148. video_url = video.get('_vidURL') or video.get('_vidURL_mp4')
  149. if not video_url:
  150. if video.get('_moderate_no') or not video.get('moderated'):
  151. raise ExtractorError(
  152. 'Video %s has not been approved by moderator' % video_id, expected=True)
  153. if video.get('error'):
  154. raise ExtractorError('Video %s does not exist' % video_id, expected=True)
  155. title = video['title']
  156. thumbnail = video['_imgURL']
  157. upload_date = unified_strdate(video['added'])
  158. uploader = video['userNick']
  159. uploader_id = video['userLogin']
  160. duration = int_or_none(video['duration'])
  161. # Video JSON does not provide enough meta data
  162. # We will extract some from the video web page instead
  163. webpage_url = 'http://smotri.com/video/view/?id=%s' % video_id
  164. webpage = self._download_webpage(webpage_url, video_id, 'Downloading video page')
  165. # Warning if video is unavailable
  166. warning = self._html_search_regex(
  167. r'<div class="videoUnModer">(.*?)</div>', webpage,
  168. 'warning message', default=None)
  169. if warning is not None:
  170. self._downloader.report_warning(
  171. 'Video %s may not be available; smotri said: %s ' %
  172. (video_id, warning))
  173. # Adult content
  174. if re.search('EroConfirmText">', webpage) is not None:
  175. self.report_age_confirmation()
  176. confirm_string = self._html_search_regex(
  177. r'<a href="/video/view/\?id=%s&confirm=([^"]+)" title="[^"]+">' % video_id,
  178. webpage, 'confirm string')
  179. confirm_url = webpage_url + '&confirm=%s' % confirm_string
  180. webpage = self._download_webpage(confirm_url, video_id, 'Downloading video page (age confirmed)')
  181. adult_content = True
  182. else:
  183. adult_content = False
  184. view_count = self._html_search_regex(
  185. 'Общее количество просмотров.*?<span class="Number">(\\d+)</span>',
  186. webpage, 'view count', fatal=False, flags=re.MULTILINE | re.DOTALL)
  187. return {
  188. 'id': video_id,
  189. 'url': video_url,
  190. 'title': title,
  191. 'thumbnail': thumbnail,
  192. 'uploader': uploader,
  193. 'upload_date': upload_date,
  194. 'uploader_id': uploader_id,
  195. 'duration': duration,
  196. 'view_count': int_or_none(view_count),
  197. 'age_limit': 18 if adult_content else 0,
  198. }
  199. class SmotriCommunityIE(InfoExtractor):
  200. IE_DESC = 'Smotri.com community videos'
  201. IE_NAME = 'smotri:community'
  202. _VALID_URL = r'^https?://(?:www\.)?smotri\.com/community/video/(?P<communityid>[0-9A-Za-z_\'-]+)'
  203. _TEST = {
  204. 'url': 'http://smotri.com/community/video/kommuna',
  205. 'info_dict': {
  206. 'id': 'kommuna',
  207. 'title': 'КПРФ',
  208. },
  209. 'playlist_mincount': 4,
  210. }
  211. def _real_extract(self, url):
  212. mobj = re.match(self._VALID_URL, url)
  213. community_id = mobj.group('communityid')
  214. url = 'http://smotri.com/export/rss/video/by/community/-/%s/video.xml' % community_id
  215. rss = self._download_xml(url, community_id, 'Downloading community RSS')
  216. entries = [self.url_result(video_url.text, 'Smotri')
  217. for video_url in rss.findall('./channel/item/link')]
  218. description_text = rss.find('./channel/description').text
  219. community_title = self._html_search_regex(
  220. '^Видео сообщества "([^"]+)"$', description_text, 'community title')
  221. return self.playlist_result(entries, community_id, community_title)
  222. class SmotriUserIE(InfoExtractor):
  223. IE_DESC = 'Smotri.com user videos'
  224. IE_NAME = 'smotri:user'
  225. _VALID_URL = r'^https?://(?:www\.)?smotri\.com/user/(?P<userid>[0-9A-Za-z_\'-]+)'
  226. _TESTS = [{
  227. 'url': 'http://smotri.com/user/inspector',
  228. 'info_dict': {
  229. 'id': 'inspector',
  230. 'title': 'Inspector',
  231. },
  232. 'playlist_mincount': 9,
  233. }]
  234. def _real_extract(self, url):
  235. mobj = re.match(self._VALID_URL, url)
  236. user_id = mobj.group('userid')
  237. url = 'http://smotri.com/export/rss/user/video/-/%s/video.xml' % user_id
  238. rss = self._download_xml(url, user_id, 'Downloading user RSS')
  239. entries = [self.url_result(video_url.text, 'Smotri')
  240. for video_url in rss.findall('./channel/item/link')]
  241. description_text = rss.find('./channel/description').text
  242. user_nickname = self._html_search_regex(
  243. '^Видео режиссера (.*)$', description_text,
  244. 'user nickname')
  245. return self.playlist_result(entries, user_id, user_nickname)
  246. class SmotriBroadcastIE(InfoExtractor):
  247. IE_DESC = 'Smotri.com broadcasts'
  248. IE_NAME = 'smotri:broadcast'
  249. _VALID_URL = r'^https?://(?:www\.)?(?P<url>smotri\.com/live/(?P<broadcastid>[^/]+))/?.*'
  250. def _real_extract(self, url):
  251. mobj = re.match(self._VALID_URL, url)
  252. broadcast_id = mobj.group('broadcastid')
  253. broadcast_url = 'http://' + mobj.group('url')
  254. broadcast_page = self._download_webpage(broadcast_url, broadcast_id, 'Downloading broadcast page')
  255. if re.search('>Режиссер с логином <br/>"%s"<br/> <span>не существует<' % broadcast_id, broadcast_page) is not None:
  256. raise ExtractorError(
  257. 'Broadcast %s does not exist' % broadcast_id, expected=True)
  258. # Adult content
  259. if re.search('EroConfirmText">', broadcast_page) is not None:
  260. (username, password) = self._get_login_info()
  261. if username is None:
  262. raise ExtractorError(
  263. 'Erotic broadcasts allowed only for registered users, '
  264. 'use --username and --password options to provide account credentials.',
  265. expected=True)
  266. login_form = {
  267. 'login-hint53': '1',
  268. 'confirm_erotic': '1',
  269. 'login': username,
  270. 'password': password,
  271. }
  272. request = compat_urllib_request.Request(
  273. broadcast_url + '/?no_redirect=1', compat_urllib_parse.urlencode(login_form))
  274. request.add_header('Content-Type', 'application/x-www-form-urlencoded')
  275. broadcast_page = self._download_webpage(
  276. request, broadcast_id, 'Logging in and confirming age')
  277. if re.search('>Неверный логин или пароль<', broadcast_page) is not None:
  278. raise ExtractorError('Unable to log in: bad username or password', expected=True)
  279. adult_content = True
  280. else:
  281. adult_content = False
  282. ticket = self._html_search_regex(
  283. r"window\.broadcast_control\.addFlashVar\('file'\s*,\s*'([^']+)'\)",
  284. broadcast_page, 'broadcast ticket')
  285. url = 'http://smotri.com/broadcast/view/url/?ticket=%s' % ticket
  286. broadcast_password = self._downloader.params.get('videopassword', None)
  287. if broadcast_password:
  288. url += '&pass=%s' % hashlib.md5(broadcast_password.encode('utf-8')).hexdigest()
  289. broadcast_json_page = self._download_webpage(
  290. url, broadcast_id, 'Downloading broadcast JSON')
  291. try:
  292. broadcast_json = json.loads(broadcast_json_page)
  293. protected_broadcast = broadcast_json['_pass_protected'] == 1
  294. if protected_broadcast and not broadcast_password:
  295. raise ExtractorError(
  296. 'This broadcast is protected by a password, use the --video-password option',
  297. expected=True)
  298. broadcast_offline = broadcast_json['is_play'] == 0
  299. if broadcast_offline:
  300. raise ExtractorError('Broadcast %s is offline' % broadcast_id, expected=True)
  301. rtmp_url = broadcast_json['_server']
  302. mobj = re.search(r'^rtmp://[^/]+/(?P<app>.+)/?$', rtmp_url)
  303. if not mobj:
  304. raise ExtractorError('Unexpected broadcast rtmp URL')
  305. broadcast_playpath = broadcast_json['_streamName']
  306. broadcast_app = '%s/%s' % (mobj.group('app'), broadcast_json['_vidURL'])
  307. broadcast_thumbnail = broadcast_json['_imgURL']
  308. broadcast_title = self._live_title(broadcast_json['title'])
  309. broadcast_description = broadcast_json['description']
  310. broadcaster_nick = broadcast_json['nick']
  311. broadcaster_login = broadcast_json['login']
  312. rtmp_conn = 'S:%s' % uuid.uuid4().hex
  313. except KeyError:
  314. if protected_broadcast:
  315. raise ExtractorError('Bad broadcast password', expected=True)
  316. raise ExtractorError('Unexpected broadcast JSON')
  317. return {
  318. 'id': broadcast_id,
  319. 'url': rtmp_url,
  320. 'title': broadcast_title,
  321. 'thumbnail': broadcast_thumbnail,
  322. 'description': broadcast_description,
  323. 'uploader': broadcaster_nick,
  324. 'uploader_id': broadcaster_login,
  325. 'age_limit': 18 if adult_content else 0,
  326. 'ext': 'flv',
  327. 'play_path': broadcast_playpath,
  328. 'player_url': 'http://pics.smotri.com/broadcast_play.swf',
  329. 'app': broadcast_app,
  330. 'rtmp_live': True,
  331. 'rtmp_conn': rtmp_conn,
  332. 'is_live': True,
  333. }