Critique, improve, or borrow my youtube-dl hoarder script


Recommended Posts

https://github.com/JustinAiken/unRaid-Youtube-DL 

 

The meat of it is this command, then some wrappers around it to make it easy to list out vids/channels/playlists you want

  docker run -it --rm \
    --name=youtube-dl \
    -v "$YOUTUBE_DIR:/src" \
    wernight/youtube-dl \
      -v \
      --all-subs \
      --embed-subs \
      --add-metadata \
      --ignore-errors \
      --playlist-start 1 \
      -f bestvideo+bestaudio \
      -o "$path" \
      --download-archive /src/archive.txt \
      "$youtube_url" || echo "Download failed :/"

 

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.