Skip to content

Instantly share code, notes, and snippets.

@avissian
avissian / gist:21fdc360634064ac91a298090fac7ef7
Last active July 1, 2025 10:53
Download video & upload to own cloud (using rclone)
#!/bin/bash
BASE_CMD="yt-dlp -6 $1 --cookies-from-browser=firefox" # use IPv6 only!
CLOUD_DST="yadisk:/Video_yt"
HTTPS_PROXY= #"socks5://127.0.0.1:7890"
HTTP_PROXY=$HTTPS_PROXY
if [[ $2 == "" ]]
then
$BASE_CMD -F
exit 0