add support for youtube-dl options (closes #33, #34)

This commit is contained in:
Alex Shnitman 2021-08-28 10:32:24 +03:00
parent 058e03876f
commit b1f856474c
3 changed files with 13 additions and 2 deletions

View file

@ -2,6 +2,7 @@
# pylint: disable=no-member,method-hidden
import os
import sys
from aiohttp import web
import socketio
import logging
@ -17,6 +18,7 @@ class Config:
'AUDIO_DOWNLOAD_DIR': '%%DOWNLOAD_DIR',
'URL_PREFIX': '',
'OUTPUT_TEMPLATE': '%(title)s.%(ext)s',
'YTDL_OPTIONS': '{}',
}
def __init__(self):
@ -27,6 +29,12 @@ class Config:
setattr(self, k, getattr(self, v[2:]))
if not self.URL_PREFIX.endswith('/'):
self.URL_PREFIX += '/'
try:
self.YTDL_OPTIONS = json.loads(self.YTDL_OPTIONS)
assert isinstance(self.YTDL_OPTIONS, dict)
except (json.decoder.JSONDecodeError, AssertionError):
log.error('YTDL_OPTIONS is invalid')
sys.exit(1)
config = Config()