aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAlex Shnitman <alexta69@gmail.com>2021-07-25 20:56:56 +0300
committerAlex Shnitman <alexta69@gmail.com>2021-07-25 21:22:20 +0300
commit3fe107b2991399a3ea0c446cf579e977b75817dd (patch)
tree86904ea2cedc183386c6a24be689c45912fb39aa /README.md
parentAdd AUDIO_DOWNLOAD_DIR option (diff)
downloadmetube-3fe107b2991399a3ea0c446cf579e977b75817dd.tar.gz
metube-3fe107b2991399a3ea0c446cf579e977b75817dd.tar.bz2
metube-3fe107b2991399a3ea0c446cf579e977b75817dd.zip
set AUDIO_DOWNLOAD_DIR to the value if DOWNLOAD_DIR if it wasn't overriden in the environment
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 4942bad..57bbad6 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@ services:
Certain values can be set via environment variables, using the `-e` parameter on the docker command line, or the `environment:` section in docker-compose.
* __DOWNLOAD_DIR__: path to where the downloads will be saved. Defaults to `/downloads` in the docker image, and `.` otherwise.
-* __AUDIO_DOWNLOAD_DIR__: path to where the audio downloads will be saved. Defaults to `/downloads` in the docker image, and `.` otherwise.
+* __AUDIO_DOWNLOAD_DIR__: path to where audio-only downloads will be saved, if you wish to separate them from the video downloads. Defaults to the value of `DOWNLOAD_DIR`.
* __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/ytdl-org/youtube-dl/blob/master/README.md#output-template). Defaults to `%(title)s.%(ext)s`.
bgstack15