Skip to content

Instantly share code, notes, and snippets.

@kaubu
Created August 28, 2022 08:03
Show Gist options
  • Save kaubu/d71707e4c3565ec8a6dabfb73feecaf5 to your computer and use it in GitHub Desktop.
Save kaubu/d71707e4c3565ec8a6dabfb73feecaf5 to your computer and use it in GitHub Desktop.
Download videos using yt-dlp
#!/bin/bash
echo "Usage: ./videoget <url>"
echo "Press 'CTRL-C' to stop."
url=$1
yt-dlp -f "bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best" "$1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment