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