]> jfr.im git - yt-dlp.git/blob - yt_dlp/downloader/niconico.py
[cleanup] Minor fixes (See desc)
[yt-dlp.git] / yt_dlp / downloader / niconico.py
1 import threading
2
3 from .common import FileDownloader
4 from ..downloader import get_suitable_downloader
5 from ..extractor.niconico import NiconicoIE
6 from ..utils import sanitized_Request
7
8
9 class NiconicoDmcFD(FileDownloader):
10 """ Downloading niconico douga from DMC with heartbeat """
11
12 FD_NAME = 'niconico_dmc'
13
14 def real_download(self, filename, info_dict):
15 self.to_screen('[%s] Downloading from DMC' % self.FD_NAME)
16
17 ie = NiconicoIE(self.ydl)
18 info_dict, heartbeat_info_dict = ie._get_heartbeat_info(info_dict)
19
20 fd = get_suitable_downloader(info_dict, params=self.params)(self.ydl, self.params)
21
22 success = download_complete = False
23 timer = [None]
24 heartbeat_lock = threading.Lock()
25 heartbeat_url = heartbeat_info_dict['url']
26 heartbeat_data = heartbeat_info_dict['data'].encode()
27 heartbeat_interval = heartbeat_info_dict.get('interval', 30)
28
29 request = sanitized_Request(heartbeat_url, heartbeat_data)
30
31 def heartbeat():
32 try:
33 self.ydl.urlopen(request).read()
34 except Exception:
35 self.to_screen('[%s] Heartbeat failed' % self.FD_NAME)
36
37 with heartbeat_lock:
38 if not download_complete:
39 timer[0] = threading.Timer(heartbeat_interval, heartbeat)
40 timer[0].start()
41
42 heartbeat_info_dict['ping']()
43 self.to_screen('[%s] Heartbeat with %d second interval ...' % (self.FD_NAME, heartbeat_interval))
44 try:
45 heartbeat()
46 if type(fd).__name__ == 'HlsFD':
47 info_dict.update(ie._extract_m3u8_formats(info_dict['url'], info_dict['id'])[0])
48 success = fd.real_download(filename, info_dict)
49 finally:
50 if heartbeat_lock:
51 with heartbeat_lock:
52 timer[0].cancel()
53 download_complete = True
54 return success