1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 04:05:39 +01:00
svtplay-dl/lib/svtplay_dl/__init__.py

87 lines
2.3 KiB
Python
Raw Normal View History

2013-03-23 15:02:41 +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, unicode_literals
2013-03-23 15:02:41 +01:00
import sys
import logging
from svtplay_dl.log import log
2018-01-30 21:43:19 +01:00
from svtplay_dl.utils.parser import parser, mergeparseroption, Options
2018-01-14 00:49:26 +01:00
from svtplay_dl.utils.getmedia import get_all_episodes, get_media, get_multiple_media, get_one_media
2018-01-30 21:43:19 +01:00
2017-09-16 23:45:29 +02:00
from svtplay_dl.service.cmore import Cmore
2018-03-11 23:40:02 +01:00
__version__ = "1.9.11"
2013-03-23 15:02:41 +01:00
2018-01-30 21:43:19 +01:00
log = logging.getLogger('svtplay_dl')
2013-03-23 15:02:41 +01:00
2018-01-30 20:11:37 +01:00
2014-01-05 16:30:45 +01:00
def setup_log(silent, verbose=False):
logging.addLevelName(25, "INFO")
fmt = logging.Formatter('%(levelname)s: %(message)s')
2013-03-23 15:02:41 +01:00
if silent:
stream = sys.stderr
level = 25
2014-01-05 16:30:45 +01:00
elif verbose:
stream = sys.stderr
level = logging.DEBUG
fmt = logging.Formatter('%(levelname)s [%(created)s] %(pathname)s/%(funcName)s: %(message)s')
2013-03-23 15:02:41 +01:00
else:
stream = sys.stdout
level = logging.INFO
hdlr = logging.StreamHandler(stream)
hdlr.setFormatter(fmt)
log.addHandler(hdlr)
log.setLevel(level)
2015-09-15 20:10:32 +02:00
2013-03-23 15:02:41 +01:00
def main():
""" Main program """
2018-01-14 00:39:16 +01:00
parse, options = parser(__version__)
2018-01-14 00:35:28 +01:00
2018-01-13 20:53:02 +01:00
if len(options.urls) == 0:
2018-01-14 00:39:16 +01:00
parse.print_help()
sys.exit(0)
2018-01-13 20:53:02 +01:00
urls = options.urls
if len(urls) < 1:
2018-01-14 00:39:16 +01:00
parse.error("Incorrect number of arguments")
if options.exclude:
options.exclude = options.exclude.split(",")
if options.require_subtitle:
if options.merge_subtitle:
options.merge_subtitle = True
else:
options.subtitle = True
if options.merge_subtitle:
options.remux = True
2018-01-14 00:31:00 +01:00
options = mergeparseroption(Options(), options)
if options.silent_semi:
options.silent = True
2014-01-05 16:30:45 +01:00
setup_log(options.silent, options.verbose)
2013-03-23 15:02:41 +01:00
2017-09-19 00:30:11 +02:00
if options.cmoreoperatorlist:
2018-01-13 20:53:02 +01:00
c = Cmore(options, urls)
2017-09-19 00:30:11 +02:00
c.operatorlist()
sys.exit(0)
if options.proxy:
options.proxy = options.proxy.replace("socks5", "socks5h", 1)
options.proxy = dict(http=options.proxy,
https=options.proxy)
2013-03-23 18:26:48 +01:00
if options.flexibleq and not options.quality:
log.error("flexible-quality requires a quality")
sys.exit(4)
try:
if len(urls) == 1:
2018-01-14 00:49:26 +01:00
get_media(urls[0], options, __version__)
else:
get_multiple_media(urls, options)
except KeyboardInterrupt:
2014-05-02 12:06:53 +02:00
print("")
2015-09-15 20:10:32 +02:00