Data Hoarding 101
Best way to grab things off the web for data hoarding
Set these functions in your Terminal
_________________________________________
grabvideoBest () { yt-dlp --console-title --geo-bypass --no-check-certificates -v -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best' "$1" ; }
grabAudioBest () { yt-dlp --console-title --geo-bypass --no-check-certificates -v -x --audio-format best --audio-quality 0 "$1" ; }
PlaylistgrabvideoBest () { yt-dlp --console-title --geo-bypass --no-check-certificates -v -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best' --yes-playlist "$1" ; }
PlaylistgrabAudioBest () { yt-dlp --console-title --geo-bypass --no-check-certificates -v -x --audio-format best --audio-quality 0 --yes-playlist "$1" ; }
PlaylistgrabvideoBestCur () { yt-dlp --console-title --geo-bypass --no-check-certificates -v -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best' --yes-playlist --username "Lunarson24@yahoo.com" --pass>
grabwebpage () { wget -p -r --html-extension --convert-links -E -k -l 1 -np "$1" ; }
grabwebpage+ () { wget -p -r --html-extension --convert-links -E -k -l 1 -np -P "./webpages" "$1" && \ wkhtmltopdf "$1" "./webpages/$(basename "$1").pdf" ; }
grabvideoshort () { yt-dlp \
--no-check-certificates \
-f best \
-o "%(title).50s [%(id)s].%(ext)s" \ "$1" ; }
Comments
Post a Comment