Ive just been downloading videos direct with yt-dlp, but I think I’m going to extend it into a bash script which fetches the RSS of the channels I want, downloads them if they haven’t been downloaded, and then deletes them after they have been watched and after a certain amount of time has passed, or if I have marked them for deletion.
I wrote something a while back in bash that pulls down a channel with yt-dlp, remembers already-downloaded stuff, and doesn’t redownload. Has a menu interface showing a list of “subscribed” channels to pull from. If you want, I’ll throw you a copy.
I’d do stuff like this with caution, as YouTube temp-IP-banned me from anonymous use for something like a month after I sucked down the contents of an enormous channel in a relatively-short time. At the very least, I’d suggest having it put a cap on how much it downloads by default so that you don’t inadvertently pull down way more than expected and run into trouble with YouTube. My own script doesn’t presently have such a cap.
I’m currently yanking everything over a VPN connection from a provider that I trust and I’m not collecting anything as enormous as entire channels. With this considered along with the fact that this is outside the bounds of a user account (I don’t believe EULA can come into play as a result), I don’t think I could get in much trouble with them outside of having to change VPN endpoints occasionally if they decide to block out some IP (On one or two occasions I have gotten a message back from yt-dlp noting to sign in to prove I am not a bot).
I appreciate the offer on the script, however I think I will build my own as it is not an urgent matter for me and I consider it a good exercise in practicing my skills with programming. I’ve been looking to build my own RSS reader for a while, and I think this is probably a good use case for this as well.
I wrote something a while back in bash that pulls down a channel with yt-dlp, remembers already-downloaded stuff, and doesn’t redownload. Has a menu interface showing a list of “subscribed” channels to pull from. If you want, I’ll throw you a copy.
I’d do stuff like this with caution, as YouTube temp-IP-banned me from anonymous use for something like a month after I sucked down the contents of an enormous channel in a relatively-short time. At the very least, I’d suggest having it put a cap on how much it downloads by default so that you don’t inadvertently pull down way more than expected and run into trouble with YouTube. My own script doesn’t presently have such a cap.
I’m currently yanking everything over a VPN connection from a provider that I trust and I’m not collecting anything as enormous as entire channels. With this considered along with the fact that this is outside the bounds of a user account (I don’t believe EULA can come into play as a result), I don’t think I could get in much trouble with them outside of having to change VPN endpoints occasionally if they decide to block out some IP (On one or two occasions I have gotten a message back from yt-dlp noting to sign in to prove I am not a bot).
I appreciate the offer on the script, however I think I will build my own as it is not an urgent matter for me and I consider it a good exercise in practicing my skills with programming. I’ve been looking to build my own RSS reader for a while, and I think this is probably a good use case for this as well.
Thanks!