uknowngithubuser
10/20/2018 - 5:44 PM

Download Videos #ubuntu #shell #utillities

Download Videos #ubuntu #shell #utillities

#!/bin/bash

# Move to Videos
cd ~/Videos || return

# Use aria2c & youtube-dl to download video

if hash aria2c 2> /dev/null; then
  youtube-dl -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/mp4' "$1"
else
  youtube-dl -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best' --merge-output-format mp4 -o '%(title)s-%(id)s-%(format_id)s.%(ext)s' "$1"
fi