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/output.py

206 lines
6.6 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
import sys
import time
import re
import os
import io
import platform
from datetime import timedelta
2016-01-27 19:49:38 +01:00
from svtplay_dl.utils import is_py2, filenamify, decode_html_entities, ensure_unicode
2014-06-26 22:55:54 +02:00
from svtplay_dl.utils.terminal import get_terminal_size
from svtplay_dl.log import log
2014-06-26 22:55:54 +02:00
progress_stream = sys.stderr
2015-09-15 20:10:32 +02:00
class ETA(object):
"""
An ETA class, used to calculate how long it takes to process
an arbitrary set of items. By initiating the object with the
number of items and continuously updating with current
progress, the class can calculate an estimation of how long
time remains.
"""
def __init__(self, end, start=0):
"""
Parameters:
end: the end (or size, of start is 0)
start: the starting position, defaults to 0
"""
self.start = start
self.end = end
self.pos = start
self.now = time.time()
self.start_time = self.now
def update(self, pos):
"""
Set new absolute progress position.
Parameters:
pos: new absolute progress
"""
self.pos = pos
self.now = time.time()
def increment(self, skip=1):
"""
Like update, but set new pos relative to old pos.
Parameters:
skip: progress since last update (defaults to 1)
"""
self.update(self.pos + skip)
@property
def left(self):
"""
returns: How many item remains?
"""
return self.end - self.pos
def __str__(self):
"""
returns: a time string of the format HH:MM:SS.
"""
duration = self.now - self.start_time
# Calculate how long it takes to process one item
try:
elm_time = duration / (self.end - self.left)
except ZeroDivisionError:
return "(unknown)"
return str(timedelta(seconds=int(elm_time * self.left)))
2014-12-26 02:04:29 +01:00
def progress(byte, total, extra=""):
""" Print some info about how much we have downloaded """
if total == 0:
progresstr = "Downloaded %dkB bytes" % (byte >> 10)
progress_stream.write(progresstr + '\r')
return
progressbar(total, byte, extra)
2015-09-15 20:10:32 +02:00
def progressbar(total, pos, msg=""):
"""
Given a total and a progress position, output a progress bar
to stderr. It is important to not output anything else while
using this, as it relies soley on the behavior of carriage
return (\\r).
Can also take an optioal message to add after the
progressbar. It must not contain newlines.
The progress bar will look something like this:
[099/500][=========...............................] ETA: 13:36:59
Of course, the ETA part should be supplied be the calling
function.
"""
width = get_terminal_size()[0] - 40
rel_pos = int(float(pos)/total*width)
bar = ''.join(["=" * rel_pos, "." * (width - rel_pos)])
# Determine how many digits in total (base 10)
digits_total = len(str(total))
fmt_width = "%0" + str(digits_total) + "d"
fmt = "\r[" + fmt_width + "/" + fmt_width + "][%s] %s"
progress_stream.write(fmt % (pos, total, bar, msg))
2015-09-15 20:10:32 +02:00
def filename(stream):
if stream.options.output:
if is_py2:
if platform.system() == "Windows":
stream.options.output = stream.options.output.decode("latin1")
else:
stream.options.output = stream.options.output.decode("utf-8")
if not stream.options.output or os.path.isdir(stream.options.output):
data = ensure_unicode(stream.get_urldata())
if data is None:
return False
match = re.search(r"(?i)<title[^>]*>\s*(.*?)\s*</title>", data, re.S)
if match:
stream.options.output_auto = True
title_tag = decode_html_entities(match.group(1))
if not stream.options.output:
stream.options.output = filenamify(title_tag)
else:
# output is a directory
stream.options.output = os.path.join(stream.options.output, filenamify(title_tag))
return True
2015-09-15 20:10:32 +02:00
2015-10-25 17:18:40 +01:00
def output(options, extention="mp4", openfd=True, mode="wb", **kwargs):
subtitlefiles = ["srt", "smi", "tt","sami", "wrst"]
2016-01-27 19:49:38 +01:00
if is_py2:
file_d = file
2016-01-27 19:49:38 +01:00
else:
file_d = io.IOBase
if options.output != "-":
ext = re.search(r"(\.\w{2,4})$", options.output)
if not ext:
options.output = "%s.%s" % (options.output, extention)
if options.output_auto and ext:
options.output = "%s.%s" % (options.output, extention)
elif extention == "srt" and ext:
options.output = "%s.srt" % options.output[:options.output.rfind(ext.group(1))]
if ext and extention == "srt" and ext.group(1).split(".")[-1] in subtitlefiles:
options.output = "%s.srt" % options.output[:options.output.rfind(ext.group(1))]
log.info("Outfile: %s", options.output)
2015-01-28 21:02:27 +01:00
if os.path.isfile(options.output) or \
findexpisode(os.path.dirname(os.path.realpath(options.output)), options.service, os.path.basename(options.output)):
if extention in subtitlefiles:
2014-12-31 19:55:53 +01:00
if not options.force_subtitle:
log.error("File (%s) already exists. Use --force-subtitle to overwrite" % options.output)
2014-12-31 19:55:53 +01:00
return None
else:
if not options.force:
log.error("File (%s) already exists. Use --force to overwrite" % options.output)
2014-12-31 19:55:53 +01:00
return None
if openfd:
2015-10-25 17:18:40 +01:00
file_d = open(options.output, mode, **kwargs)
else:
if openfd:
2016-01-27 19:49:38 +01:00
if is_py2:
file_d = sys.stdout
2016-01-27 19:49:38 +01:00
else:
file_d = sys.stdout.buffer
return file_d
2015-09-15 20:10:32 +02:00
def findexpisode(directory, service, name):
subtitlefiles = ["srt", "smi", "tt","sami", "wrst"]
match = re.search(r"-(\w+)-\w+.(\w{2,3})$", name)
if not match:
return False
videoid = match.group(1)
extention = match.group(2)
files = [f for f in os.listdir(directory) if os.path.isfile(os.path.join(directory, f))]
for i in files:
match = re.search(r"-(\w+)-\w+.(\w{2,3})$", i)
if match:
if service:
if extention in subtitlefiles:
if name.find(service) and match.group(1) == videoid and match.group(2) == extention:
return True
elif match.group(2) not in subtitlefiles and match.group(2) != "m4a":
if name.find(service) and match.group(1) == videoid:
return True
return False