- Install Docker Desktop for your system
- (WINDOWS ONLY) Enable WSL2
- Open a terminal or command prompt window & pull this image from Dockerhub:
docker pull lukebechtel/yt-spleet:latest
- Figure out what directory you want the files to be saved to on your computer
--
YOUR_DIR
- Run this command, replacing
YOUR_DIR
with that directory path, andYOUR_YOUTUBE_URL
with the URL you want to download and split.docker run -v YOUR_DIR:/src/yt-spleet-output/ --rm -it lukebechtel/yt-spleet:latest --urls "YOUR_YOUTUBE_URL"
- Wait for the download and split to finish. Normal sized (< 5 minute) files should take less than one minute.
- Check the
YOUR_DIR
directory for the files. There will be a new folder for each URL you passed in, and each folder will contain the split audio files, along with the original.
docker build . -f Dockerfile -t yt-spleet:latest