diff options
author | exwm <thighsman@protonmail.com> | 2020-11-03 20:59:23 -0500 |
---|---|---|
committer | exwm <thighsman@protonmail.com> | 2020-11-03 20:59:23 -0500 |
commit | be5d6c213cc68ab0ae3764db7c3fd9ed128b3ff3 (patch) | |
tree | 1f5e483d1cc22cadadb9a4293cbdf7f30718cfb8 | |
parent | 130599af9476284e7f0b3be4f68a0ff8346fb6ea (diff) | |
download | hypervideo-pre-be5d6c213cc68ab0ae3764db7c3fd9ed128b3ff3.tar.lz hypervideo-pre-be5d6c213cc68ab0ae3764db7c3fd9ed128b3ff3.tar.xz hypervideo-pre-be5d6c213cc68ab0ae3764db7c3fd9ed128b3ff3.zip |
[vlive] refactor: delete dead function code
-rw-r--r-- | youtube_dlc/extractor/vlive.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/youtube_dlc/extractor/vlive.py b/youtube_dlc/extractor/vlive.py index 38d78eda1..a205af921 100644 --- a/youtube_dlc/extractor/vlive.py +++ b/youtube_dlc/extractor/vlive.py @@ -202,16 +202,6 @@ class VLiveIE(NaverBaseIE): 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' |