]>
RaphaΓ«l G. Git Repositories - youtubedl/blob - youtube_dl/extractor/periscope.py
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
13 class PeriscopeBaseIE(InfoExtractor
):
14 def _call_api(self
, method
, query
, item_id
):
15 return self
._download
_json
(
16 'https://api.periscope.tv/api/v2/%s' % method
,
20 class PeriscopeIE(PeriscopeBaseIE
):
23 _VALID_URL
= r
'https?://(?:www\.)?(?:periscope|pscp)\.tv/[^/]+/(?P<id>[^/?#]+)'
24 # Alive example URLs can be found here http://onperiscope.com/
26 'url': 'https://www.periscope.tv/w/aJUQnjY3MjA3ODF8NTYxMDIyMDl2zCg2pECBgwTqRpQuQD352EMPTKQjT4uqlM3cgWFA-g==',
27 'md5': '65b57957972e503fcbbaeed8f4fa04ca',
31 'title': 'Bec Boop - π βοΈπ¬π§ Fly above #London in Emirates Air Line cable car at night π¬π§βοΈπ #BoopScope ππ',
32 'timestamp': 1438978559,
33 'upload_date': '20150807',
34 'uploader': 'Bec Boop',
35 'uploader_id': '1465763',
37 'skip': 'Expires in 24 hours',
39 'url': 'https://www.periscope.tv/w/1ZkKzPbMVggJv',
40 'only_matching': True,
42 'url': 'https://www.periscope.tv/bastaakanoggano/1OdKrlkZZjOJX',
43 'only_matching': True,
45 'url': 'https://www.periscope.tv/w/1ZkKzPbMVggJv',
46 'only_matching': True,
50 def _extract_url(webpage
):
52 r
'<iframe[^>]+src=([\'"])(?P<url>(?:https?:)?//(?:www\.)?(?:periscope|pscp)\.tv/(?:(?!\1).)+)\1', webpage)
54 return mobj.group('url')
56 def _real_extract(self, url):
57 token = self._match_id(url)
59 stream = self._call_api(
60 'accessVideoPublic', {'broadcast_id': token}, token)
62 broadcast = stream['broadcast']
63 title = broadcast['status']
65 uploader = broadcast.get('user_display_name') or broadcast.get('username')
66 uploader_id = (broadcast.get('user_id') or broadcast.get('username'))
68 title = '%s - %s' % (uploader, title) if uploader else title
69 state = broadcast.get('state').lower()
70 if state == 'running':
71 title = self._live_title(title)
72 timestamp = parse_iso8601(broadcast.get('created_at'))
75 'url': broadcast[image],
76 } for image in ('image_url', 'image_url_small') if broadcast.get(image)]
80 for format_id in ('replay', 'rtmp', 'hls', 'https_hls', 'lhls', 'lhlsweb'):
81 video_url = stream.get(format_id + '_url')
82 if not video_url or video_url in video_urls:
84 video_urls.add(video_url)
85 if format_id != 'rtmp':
86 formats.extend(self._extract_m3u8_formats(
87 video_url, token, 'mp4',
88 entry_protocol='m3u8_native'
89 if state in ('ended', 'timed_out') else 'm3u8',
90 m3u8_id=format_id, fatal=False))
94 'ext': 'flv' if format_id == 'rtmp' else 'mp4',
96 self._sort_formats(formats)
99 'id': broadcast.get('id') or token,
101 'timestamp': timestamp,
102 'uploader': uploader,
103 'uploader_id': uploader_id,
104 'thumbnails': thumbnails,
109 class PeriscopeUserIE(PeriscopeBaseIE):
110 _VALID_URL = r'https?://(?:www\.)?(?:periscope|pscp)\.tv/(?P<id>[^/]+)/?$'
111 IE_DESC = 'Periscope user videos'
112 IE_NAME = 'periscope:user'
115 'url': 'https://www.periscope.tv/LularoeHusbandMike/',
117 'id': 'LularoeHusbandMike',
118 'title': 'LULAROE HUSBAND MIKE',
119 'description': 'md5:6cf4ec8047768098da58e446e82c82f0',
121 # Periscope only shows videos in the last 24 hours, so it's possible to
123 'playlist_mincount': 0,
126 def _real_extract(self, url):
127 user_name = self._match_id(url)
129 webpage = self._download_webpage(url, user_name)
131 data_store = self._parse_json(
132 unescapeHTML(self._search_regex(
133 r'data-store=(["\'])(?P
<data
>.+?
)\
1',
134 webpage, 'data store
', default='{}', group='data
')),
137 user = list(data_store['UserCache
']['users
'].values())[0]['user
']
139 session_id = data_store['SessionToken
']['public
']['broadcastHistory
']['token
']['session_id
']
141 broadcasts = self._call_api(
142 'getUserBroadcastsPublic
',
143 {'user_id
': user_id, 'session_id
': session_id},
144 user_name)['broadcasts
']
147 broadcast['id'] for broadcast in broadcasts if broadcast.get('id')]
149 title = user.get('display_name
') or user.get('username
') or user_name
150 description = user.get('description
')
154 'https
://www
.periscope
.tv
/%s/%s' % (user_name, broadcast_id))
155 for broadcast_id in broadcast_ids]
157 return self.playlist_result(entries, user_id, title, description)