1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 12:15:40 +01:00
svtplay-dl/lib/svtplay_dl/fetcher/http.py

39 lines
1.1 KiB
Python
Raw Normal View History

2013-03-02 21:26:28 +01:00
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
from __future__ import absolute_import
2013-02-12 19:15:11 +01:00
2018-05-13 13:06:45 +02:00
from svtplay_dl.utils.output import ETA, progressbar, output
2014-04-21 16:50:24 +02:00
from svtplay_dl.fetcher import VideoRetriever
2013-02-12 19:15:11 +01:00
2015-09-15 20:10:32 +02:00
2014-04-21 16:50:24 +02:00
class HTTP(VideoRetriever):
2018-05-25 22:47:26 +02:00
@property
def name(self):
return "http"
2014-04-21 16:50:24 +02:00
def download(self):
""" Get the stream from HTTP """
2018-05-13 01:45:23 +02:00
self.output_extention = "mp4" # this might be wrong..
data = self.http.request("get", self.url, stream=True)
2014-04-21 16:50:24 +02:00
try:
2015-08-30 14:41:59 +02:00
total_size = data.headers['content-length']
2014-04-21 16:50:24 +02:00
except KeyError:
total_size = 0
total_size = int(total_size)
bytes_so_far = 0
2018-05-08 22:46:11 +02:00
file_d = output(self.output, self.config, "mp4")
if file_d is None:
return
2013-02-12 19:15:11 +01:00
eta = ETA(total_size)
2015-08-30 14:41:59 +02:00
for i in data.iter_content(8192):
bytes_so_far += len(i)
file_d.write(i)
2018-05-13 13:06:45 +02:00
if not self.options.get("silent"):
eta.update(bytes_so_far)
progressbar(total_size, bytes_so_far, ''.join(["ETA: ", str(eta)]))
2013-02-12 19:15:11 +01:00
file_d.close()
self.finished = True