Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 637 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 637 Bytes

YT DL Web

This is a simple website to download audio (as .m4a) from YouTube using yt-dlp.

Here's a screenshot of the website: screenshot

Running Locally

With Golang installed, just run

go run main.go

This will start a web server at http://localhost:3333

Building Docker Container

To build the Docker container, you first need to build the Golang server:

go build main.go

Then you can build the container:

docker buildx build -t <tag> .

This will build a docker image with yt-dlp pre-installed, so you can run it anywhere