allow changing of description, paralellize download

This commit is contained in:
gutmet 2022-11-27 21:08:59 +01:00
parent 851c0b9a15
commit f99f1da559
2 changed files with 9 additions and 36 deletions

View File

@ -2,38 +2,3 @@ Adam shows us how to use cheap plastic syringes to create a simple hydraulics sy
150ml large plastic syringes: https://amzn.to/3IpwTzd
Disclaimer: Tested may earn an affiliate commission when you buy through the links here.
Shot and edited by Joey Fameli
Join this channel to support Tested and get access to perks:
https://www.youtube.com/channel/UCiDJtJKMICpb9B1qf7qjEOA/join
Tested Ts, stickers, mugs and more: https://tested-store.com
Subscribe for more videos (and click the bell for notifications): http://www.youtube.com/subscription_center?add_user=testedcom
Twitter: http://www.twitter.com/testedcom
Facebook: http://www.facebook.com/testedcom
Instagram: https://www.instagram.com/testedcom/
Discord: https://www.discord.gg/tested
Amazon Storefront: http://www.amazon.com/shop/adamsavagestested
Savage Industries T-shirts: https://cottonbureau.com/stores/savage-merchandising#/shop
Tested is:
Adam Savage http://www.twitter.com/donttrythis
Norman Chan http://www.twitter.com/nchan
Joey Fameli http://www.joeyfameli.com
Ryan Kiser https://www.instagram.com/ryan.kiser
Josh Self http://www.mrjoshself.com
Jen Schachter http://www.jenschachter.com
Kishore Hari http://www.twitter.com/sciencequiche
Sean Charlesworth http://www.twitter.com/cworthdynamics
Jeremy Williams http://www.twitter.com/jerware
Kayte Sabicer https://www.instagram.com/kaytesabicer
Bill Doran https://twitter.com/chinbeard
Ariel Waldman https://youtube.com/arielwaldman
Darrell Maloney https://www.youtube.com/brokennerd
Kristen Lomasney https://twitter.com/krystynlo
Intro bumper by Abe Dieckman
Thanks for watching!

View File

@ -1 +1,9 @@
youtube-dl "https://www.youtube.com/watch?list=PLJtitKU0CAehVwewqUdsYrDqg9Kp1jQvj" --write-description --skip-download --restrict-filenames
#!/usr/bin/env bash
set -eu
playlistURL="https://www.youtube.com/watch?list=PLJtitKU0CAehVwewqUdsYrDqg9Kp1jQvj"
playlistJSON=`yt-dlp "$playlistURL" --flat-playlist -J`
urls=`echo "$playlistJSON" | jq -r '.entries[].url'`
echo "$urls" | xargs -P 20 -I % youtube-dl "%" --write-description --skip-download --restrict-filenames --no-post-overwrite --no-overwrites