Skip to content

Instantly share code, notes, and snippets.

@kotsmotritnastul
Created September 23, 2024 20:42
Show Gist options
  • Save kotsmotritnastul/6bf32effd48aa3623f742055f121ab7c to your computer and use it in GitHub Desktop.
Save kotsmotritnastul/6bf32effd48aa3623f742055f121ab7c to your computer and use it in GitHub Desktop.
yt-dlp скачать все подписки за последние два дня
#!/usr/bin/bash
yt-dlp -U
yt-dlp \
:ytsubs \
--lazy-playlist \
--match-filter "!is_live & live_status!=is_upcoming & availability=public" \
--no-overwrites \
--file-access-retries infinite \
-R infinite \
--sponsorblock-remove all \
--ffmpeg-location ./ffmpeg \
--dateafter today-2day \
--cookies ./www.youtube.com_cookies.txt \
--break-on-reject
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment