]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/funk.py
2 from __future__
import unicode_literals
7 from .common
import InfoExtractor
8 from .nexx
import NexxIE
9 from ..compat
import compat_str
16 class FunkBaseIE(InfoExtractor
):
19 'Accept-Language': 'en-US,en;q=0.9,ru;q=0.8',
20 'authorization': 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjbGllbnROYW1lIjoid2ViYXBwLXYzMSIsInNjb3BlIjoic3RhdGljLWNvbnRlbnQtYXBpLGN1cmF0aW9uLWFwaSxuZXh4LWNvbnRlbnQtYXBpLXYzMSx3ZWJhcHAtYXBpIn0.mbuG9wS9Yf5q6PqgR4fiaRFIagiHk9JhwoKES7ksVX4',
22 _AUTH
= 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjbGllbnROYW1lIjoid2ViYXBwLXYzMSIsInNjb3BlIjoic3RhdGljLWNvbnRlbnQtYXBpLGN1cmF0aW9uLWFwaSxuZXh4LWNvbnRlbnQtYXBpLXYzMSx3ZWJhcHAtYXBpIn0.mbuG9wS9Yf5q6PqgR4fiaRFIagiHk9JhwoKES7ksVX4'
25 def _make_headers(referer
):
26 headers
= FunkBaseIE
._HEADERS
.copy()
27 headers
['Referer'] = referer
30 def _make_url_result(self
, video
):
32 '_type': 'url_transparent',
33 'url': 'nexx:741:%s' % video
['sourceId'],
34 'ie_key': NexxIE
.ie_key(),
35 'id': video
['sourceId'],
36 'title': video
.get('title'),
37 'description': video
.get('description'),
38 'duration': int_or_none(video
.get('duration')),
39 'season_number': int_or_none(video
.get('seasonNr')),
40 'episode_number': int_or_none(video
.get('episodeNr')),
44 class FunkMixIE(FunkBaseIE
):
45 _VALID_URL
= r
'https?://(?:www\.)?funk\.net/mix/(?P<id>[^/]+)/(?P<alias>[^/?#&]+)'
47 'url': 'https://www.funk.net/mix/59d65d935f8b160001828b5b/die-realste-kifferdoku-aller-zeiten',
48 'md5': '8edf617c2f2b7c9847dfda313f199009',
52 'title': '"Die realste Kifferdoku aller Zeiten"',
53 'description': 'md5:c97160f5bafa8d47ec8e2e461012aa9d',
54 'timestamp': 1490274721,
55 'upload_date': '20170323',
59 def _real_extract(self
, url
):
60 mobj
= re
.match(self
._VALID
_URL
, url
)
61 mix_id
= mobj
.group('id')
62 alias
= mobj
.group('alias')
64 lists
= self
._download
_json
(
65 'https://www.funk.net/api/v3.1/curation/curatedLists/',
66 mix_id
, headers
=self
._make
_headers
(url
), query
={
68 })['_embedded']['curatedListList']
72 if mix_id
in (l
.get('entityId'), l
.get('alias')))['videoMetas']
74 meta
['videoDataDelegate']
77 meta
, lambda x
: x
['videoDataDelegate']['alias'],
80 return self
._make
_url
_result
(video
)
83 class FunkChannelIE(FunkBaseIE
):
84 _VALID_URL
= r
'https?://(?:www\.)?funk\.net/channel/(?P<id>[^/]+)/(?P<alias>[^/?#&]+)'
86 'url': 'https://www.funk.net/channel/ba/die-lustigsten-instrumente-aus-dem-internet-teil-2',
90 'title': 'Die LUSTIGSTEN INSTRUMENTE aus dem Internet - Teil 2',
91 'description': 'md5:a691d0413ef4835588c5b03ded670c1f',
92 'timestamp': 1514507395,
93 'upload_date': '20171229',
96 'skip_download': True,
99 # only available via byIdList API
100 'url': 'https://www.funk.net/channel/informr/martin-sonneborn-erklaert-die-eu',
104 'title': 'Martin Sonneborn erklärt die EU',
105 'description': 'md5:050f74626e4ed87edf4626d2024210c0',
106 'timestamp': 1494424042,
107 'upload_date': '20170510',
110 'skip_download': True,
113 'url': 'https://www.funk.net/channel/59d5149841dca100012511e3/mein-erster-job-lovemilla-folge-1/lovemilla/',
114 'only_matching': True,
117 def _real_extract(self
, url
):
118 mobj
= re
.match(self
._VALID
_URL
, url
)
119 channel_id
= mobj
.group('id')
120 alias
= mobj
.group('alias')
122 headers
= self
._make
_headers
(url
)
126 # Id-based channels are currently broken on their side: webplayer
127 # tries to process them via byChannelAlias endpoint and fails
129 for page_num
in itertools
.count():
130 by_channel_alias
= self
._download
_json
(
131 'https://www.funk.net/api/v3.1/webapp/videos/byChannelAlias/%s'
133 'Downloading byChannelAlias JSON page %d' % (page_num
+ 1),
134 headers
=headers
, query
={
135 'filterFsk': 'false',
136 'sort': 'creationDate,desc',
140 if not by_channel_alias
:
142 video_list
= try_get(
143 by_channel_alias
, lambda x
: x
['_embedded']['videoList'], list)
147 video
= next(r
for r
in video_list
if r
.get('alias') == alias
)
149 except StopIteration:
152 by_channel_alias
, lambda x
: x
['_links']['next']):
156 by_id_list
= self
._download
_json
(
157 'https://www.funk.net/api/v3.0/content/videos/byIdList',
158 channel_id
, 'Downloading byIdList JSON', headers
=headers
,
163 video
= try_get(by_id_list
, lambda x
: x
['result'][0], dict)
166 results
= self
._download
_json
(
167 'https://www.funk.net/api/v3.0/content/videos/filter',
168 channel_id
, 'Downloading filter JSON', headers
=headers
, query
={
169 'channelId': channel_id
,
172 video
= next(r
for r
in results
if r
.get('alias') == alias
)
174 return self
._make
_url
_result
(video
)