1.4.0 • Published 2 years ago

youtube-dl-ui v1.4.0

Weekly downloads
4
License
MIT
Repository
github
Last release
2 years ago

Overview

Installation

$ npm install -g youtube-dl-ui

Usage

You can now start the server like you would any binary.

$ youtube-dl-ui
v1.4.0

Options

Usage: youtube-dl-ui [options]

Options:
  -V, --version             output the version number
  -p, --port <port>         the port for the http server
  -v, --video-path <path>   path to directory where videos should be saved
  -a, --audio-path <path>   path to directory where audio should be saved
  -y, --youtube-dl <path>   file path to the youtube-dl binary (so you can set
                            it to yt-dlp)
  -s, --socket-path <path>  url path the socket should connect to (useful when
                            proxying the server)
  -d, --debug               enable debug mode
  -h, --help                display help for command

Config

Environment variables & command-line flags

The following environment variables can be set, to control youtube-dl-ui:

Environment variableTypeCommand-line equivalent
PORTnumber (e.g. 8080)--port 8080
VIDEO_PATHstring (e.g. ~/Downloads/videos)--video-path ~/Downloads/videos
AUDIO_PATHstring (e.g. ~/Downloads/audio)--video-path ~/Downloads/audio
YOUTUBE_DLstring (e.g. /usr/bin/yt-dlp)--youtube-dl /usr/bin/yt-dlp
SOCKET_PATHstring (e.g. /socket.io)--socket-path /socket.io
DEBUGboolean--debug

Config file

RC is used to look for config files and can be used in the following ways:

  • if you passed an option --config file then from that file
  • $HOME/.youtube-dl-ui/config
  • $HOME/.config/youtube-dl-ui
  • $HOME/.config/youtube-dl-ui/config
  • /etc/youtube-dl-ui/config

Settings from this file will be overridden, if you also set options using environment variables or command line arguments.

Transparent mode

You can append the query parameter ?transparent=1 to the UI URL. This will remove the colored background and move the content to the left.

This is used in @capevace/mission-control to embed the download UI in an iFrame.

Example:

https://example.com/youtube-dl-ui?transparent=1

Swapping out youtube-dl

There are multiple forks of youtube-dl like yt-dlp which have a compatible API and can be used instead of stock youtube-dl.

You can do this by either setting the YOUTUBE_DL=/usr/bin/yt-dlp environment variable or by passing the --youtube-dl /usr/bin/yt-dlp CLI flag. To find out your yt-dlp path, run $ which yt-dlp in your shell.

Example:

youtube-dl-ui --youtube-dl /usr/bin/yt-dlp

# or

YOUTUBE_DL=/usr/bin/yt-dlp youtube-dl-ui

Changelog

Version 1.4.0

  • Added YOUTUBE_DL environment variable (and CLI option --youtube-dl) to set the youtube-dl binary This lets you replace youtube-dl with forks like yt-dlp.
  • Added empty queue view

Version 1.3.0

  • Added footer which shows current version

Version 1.2.1

  • Fixed SOCKET_PATH env variable not working as intended

Version 1.2.0

  • Added Docker support
  • Removed automatic config file creation, you will need to do so yourself now
  • Added configuration via environment variables

Version 1.1.0

  • Updated design to fit new version of @capevace/mission-control
  • Fixed some socket connection issues

Version 1.0.3

  • Added CLI flag for socket path
  • Added config log at startup for verification

Version 1.0.2

  • Changed HTML title

Version 1.0.1

  • Forgot to add README lol

Version 1.0.0

  • First polished release

Authors

Lukas Mateffy – @Capevacemateffy.me

Distributed under the MIT license. See LICENSE for more information.

Contributing

  1. Fork it (https://github.com/capevace/youtube-dl-ui/fork)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request
1.4.0

2 years ago

1.3.0

2 years ago

1.2.1

2 years ago

1.2.0

3 years ago

1.1.0

3 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago