Downloading all of the Gordons
This post is a companion to a video about downloading all of Kitchen Nightmare's thumbnails (and turning them into a PDF?)
#download all thumbnails after 2022.01.01 (may not be always reliable) yt-dlp --write-thumbnail --skip-download --dateafter 20220101 --output "[%(upload_date>%Y.%m.%d)s] %(title)s [%(view_count)s views] .%(ext)s" https://www.youtube.com/@KitchenNightmares/videos #same but with youtube cookies from firefox and only thumbnails from after 2025.01.01 yt-dlp --cookies-from-browser firefox --write-thumbnail --skip-download --dateafter 20250101 --output "[%(upload_date>%Y.%m.%d)s] %(title)s [%(view_count)s views] .%(ext)s" https://www.youtube.com/@KitchenNightmares/videos #download thumbnails from 2024.01.01 to 2025.01.01 #(you have to hit ctrl+c to cancel once it gets outside of the 2024 range) yt-dlp --cookies-from-browser firefox --write-thumbnail --skip-download --dateafter 20240101 --datebefore 20250101 --output "[%(upload_date>%Y.%m.%d)s] %(title)s [%(view_count)s views] .%(ext)s" https://www.youtube.com/@KitchenNightmares/videos #download thumbnails from 2023.01.01 to 2024.01.01 (same here, it will just keep looping) yt-dlp --cookies-from-browser firefox --write-thumbnail --skip-download --dateafter 20230101 --datebefore 20240101 --output "[%(upload_date>%Y.%m.%d)s] %(title)s [%(view_count)s views] .%(ext)s" https://www.youtube.com/@KitchenNightmares/videos #download thumbnails from 2022.01.01 to 2023.01.01 yt-dlp --cookies-from-browser firefox --write-thumbnail --skip-download --dateafter 20220101 --datebefore 20230101 --output "[%(upload_date>%Y.%m.%d)s] %(title)s [%(view_count)s views] .%(ext)s" https://www.youtube.com/@KitchenNightmares/videos #combine all webp into a pdf (requires ghostscript and imagemagick) magick *webp -resize 792x612! -extent 792x612 -rotate 90 -page letter thumbnails_output.pdf #convert all webp to png magick mogrify -format png *.webp
yt-dlp options step by step 1. calls yt-dlp yt-dlp 2. youtube is signed into firefox and uses its cookies raise rate limit --cookies-from-browser firefox 3. save thumbnail --write-thumbnail 4. skip downloading video --skip-download 5. only download if after Jan 1st 2024 and Jan 1st 2025 --dateafter 20240101 --datebefore 20250101 6.1. file name (arguments inside of double quotes ") --output " 6.2. start file name with upload date in [2000.01.01] format with padding zeros inside of square brackets [%(upload_date>%Y.%m.%d)s] 6.3. next, add the title of the video %(title)s 6.4 add the current amount of views followed by the word "views" in square brackets [%(view_count)s views] 6.5 add the file extension at the end of the file name (webm for video, webp for thumbnail) .%(ext)s" 7. add the channel, playlist or view link at the end (put inside double quotes " if needed) https://www.youtube.com/@KitchenNightmares/videos
Download the Gordons here
Cool Cursors
Cool art person
(ty for the channel art!!)
Spending way too much time on this. I'm glad he's chilling tho pic.twitter.com/COpTqYXjXi
— Wither 🤜💥Artfight Arc💥🤛 (@TheWitherling) April 28, 2024
How Windows people should be installing their packages
(imagemagick, ffmpeg, ghostscript, yt-dlp, ect)