1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-02 06:01:08 +02:00

[vlive] refactor: delete dead function code

This commit is contained in:
exwm 2020-11-03 20:59:23 -05:00
parent 130599af94
commit be5d6c213c

View File

@ -202,16 +202,6 @@ def _replay(self, video_id, webpage, params, video_params):
self._get_common_fields(webpage, params),
self._extract_video_info(video_id, long_video_id, key))
def _download_init_page(self, video_id):
return self._download_webpage(
'https://www.vlive.tv/video/init/view',
video_id, note='Downloading live webpage',
data=urlencode_postdata({'videoSeq': video_id}),
headers={
'Referer': 'https://www.vlive.tv/video/%s' % video_id,
'Content-Type': 'application/x-www-form-urlencoded'
})
class VLiveChannelIE(InfoExtractor):
IE_NAME = 'vlive:channel'