From 01aafe3854653ca1f0c43210a0160f3ddb184870 Mon Sep 17 00:00:00 2001 From: ArabCoders Date: Mon, 14 Aug 2023 04:53:16 +0300 Subject: [PATCH] Fixed typo and removed unused import --- README.md | 2 +- app/main.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ee8e115..9255477 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Certain values can be set via environment variables, using the `-e` parameter on * __URL_PREFIX__: base path for the web server (for use when hosting behind a reverse proxy). Defaults to `/`. * __OUTPUT_TEMPLATE__: the template for the filenames of the downloaded videos, formatted according to [this spec](https://github.com/yt-dlp/yt-dlp/blob/master/README.md#output-template). Defaults to `%(title)s.%(ext)s`. * __OUTPUT_TEMPLATE_CHAPTER__: the template for the filenames of the downloaded videos, when split into chapters via postprocessors. Defaults to `%(title)s - %(section_number)s %(section_title)s.%(ext)s`. -* __YTDL_OPTIONS__: Additional options to pass to youtube-dl, This can be path to a file or or JSON format string. [See available options here](https://github.com/yt-dlp/yt-dlp/blob/master/yt_dlp/YoutubeDL.py#L183). They roughly correspond to command-line options, though some do not have exact equivalents here, for example `--recode-video` has to be specified via `postprocessors`. Also note that dashes are replaced with underscores. +* __YTDL_OPTIONS__: Additional options to pass to youtube-dl, This can be path to a file or JSON formatted string. [See available options here](https://github.com/yt-dlp/yt-dlp/blob/master/yt_dlp/YoutubeDL.py#L183). They roughly correspond to command-line options, though some do not have exact equivalents here, for example `--recode-video` has to be specified via `postprocessors`. Also note that dashes are replaced with underscores. The following example value for `YTDL_OPTIONS` embeds English subtitles and chapter markers (for videos that have them), and also changes the permissions on the downloaded video and sets the file modification timestamp to the date of when it was downloaded: diff --git a/app/main.py b/app/main.py index 292f069..0a5d371 100644 --- a/app/main.py +++ b/app/main.py @@ -3,7 +3,6 @@ import os import sys -import traceback from aiohttp import web import socketio import logging @@ -15,7 +14,7 @@ from ytdl import DownloadQueueNotifier, DownloadQueue log = logging.getLogger('main') if __name__ == '__main__': logging.basicConfig(level=logging.DEBUG) - + class Config: _DEFAULTS = { 'DOWNLOAD_DIR': '.',