From 4a4b5be1c7a95e0cfb0e3da155205d850cb5bd76 Mon Sep 17 00:00:00 2001 From: finn Date: Wed, 2 Jul 2025 23:20:16 -0700 Subject: [PATCH] added vibe-docced readme --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..3218a47 --- /dev/null +++ b/README.md @@ -0,0 +1,30 @@ +# YouTubeDL + +A simple tool to download YouTube videos or extract audio using `yt-dlp` in a Docker container. + +## Features +- Build a Docker container with `yt-dlp` pre-installed. +- Run the container to download videos or extract audio. + +## Usage + +### Build the Docker Container +```bash +./ytdl.sh build +``` + +### Run the Container to Download or Extract Audio +```bash +./ytdl.sh run [YouTube URL] +``` + +This will download the video or extract audio (in MP3 format) and save it to the `vid` directory in the current working directory. + +## Requirements +- Docker installed on your system. +- Internet connection for downloading videos. + +## Notes +- The script mounts the `vid` directory to the container for saving downloaded files. +- Ensure the `vid` directory exists before running the script. +