mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-22 16:44:32 +01:00
[skyitalia] removed unnecessary outputs
This commit is contained in:
parent
d664205e0f
commit
0429619162
@ -26,10 +26,8 @@ class SkyItaliaBaseIE(InfoExtractor):
|
|||||||
raise ExtractorError('Video not found')
|
raise ExtractorError('Video not found')
|
||||||
|
|
||||||
def _get_formats(self, video_id, token=_TOKEN):
|
def _get_formats(self, video_id, token=_TOKEN):
|
||||||
print(token)
|
|
||||||
data_url = self._GET_VIDEO_DATA.replace('{id}', video_id)
|
data_url = self._GET_VIDEO_DATA.replace('{id}', video_id)
|
||||||
data_url = data_url.replace('{token}', token)
|
data_url = data_url.replace('{token}', token)
|
||||||
print(data_url)
|
|
||||||
video_data = self._parse_json(
|
video_data = self._parse_json(
|
||||||
self._download_webpage(data_url, video_id),
|
self._download_webpage(data_url, video_id),
|
||||||
video_id
|
video_id
|
||||||
|
Loading…
Reference in New Issue
Block a user