Run youtube-dl interactively through Docker.
To reduce the size, this image is based on Alpine now. Current image size is 198 MB compared to 967 MB of previous version based on Debian.
The image uses /data
folder as a volume where videos will be stored. Hence the user needs to provide the folder that would be mapped to /data
For example,
to download the youtube video https://www.youtube.com/watch?v=37vz9Jdw5A8
and store it in /Users/kunalshah/Downloads/videos
folder:
docker run \
--rm \
-it \
-v /Users/kunalshah/Downloads/videos:/data \
kunalshah/youtube-dl-interactive:latest \
https://www.youtube.com/watch?v=37vz9Jdw5A8
For youtube-dl-interactive usage information, see youtube-dl-interactive repo or youtube-dl-interactive package on npm
See https://github.com/kunalshah/youtube-dl-interactive
If the problem occurs while running this docker image, please report issue here