>>16350
Thanks Kywy! She's actually quite impressive seeing her in action. I just wish there was a translation of the text, I don't read Moon
yet :^).
===
BTW, it occurs to me that some newer anons here may not know how to download robowaifu videos ahead of time just in case TPTB decide they need to be memory-holed. Better safe than sorry right, Anon? :^)
>Warning: These following instructions are only for you if you are comfortable using the Linux terminal, etc.
So (running on a *NIX, obvs.) run these commands to install
yt-dlp if you haven't yet:
sudo curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp
sudo chmod a+rx /usr/local/bin/yt-dlp
You can confirm it's installed by asking it's version afterwards:
yt-dlp -v
It's
also a good idea to:
a) download subtitles
b) download descriptions
c) hide your power-level
Accordingly, here's a handy script you can use for doing all three at once.
>note: Tor is needed for this script to work. You do have Tor installed on your systems, right Anon?
Change to your home directory:
cd ~
Fire up (neo)vim and create a script file:
vim tor_ytdl_retry.sh
Insert this text and save:
#!/usr/bin/env bash
maxtries=10
em="Unable to download webpage: HTTP Error 429: Too Many Requests"
set -o pipefail
while :; do
{ e=$(torsocks -i yt-dlp -i --write-description --write-comments --write-subs --sub-lang en --write-auto-subs "$@" 2>&1 >&3 3>&- | tee /dev/stderr 3>&-); } 3>&1 && exit
[ $((--maxtries)) -gt 0 -a "$e" = "$em" ] || exit
done
This will repeat a failed download if YT gives you a 429 error. Occasionally YT changes error message text (among several other things). If you get a new version of 429, just replace the em="..." above with a copy of w/e it turns out being.
Now make the script executable (user + read/execute permissions)
chmod u+rx tor_ytdl_retry.sh
That's it. You're all set now to run this script from w/e directory. So to grab this video Kywy just linked, you first cd into your robowaifu directory in your Videos folder:
cd Videos/RW/
>you do have a robowaifu directory in your Videos folder, right Anon?
Then run your new script to DL that video like this:
~/tor_ytdl_retry.sh https://www.youtube.com/watch?v=7C33JQVZBuY
(just adapt the URI to w/e video you're grabbing, Anon)
Now that you've got your own personal copy of the video, you can watch it anytime, online or off, like this:
mpv '手繋ぎメイドロボット”ましろ”ができるまで (2018~2021の記録) [7C33JQVZBuY].webm'
(again, just adapt the mpv playback command to w/e video ofc)
SAVE.EVERYTHING.ANON. :^)
Cheers.
>===
-
edit 429 error msg text
-
minor prose edit
-
add 'mpv playback' cmnt
-
edit chmod mode to 'user'
-
add 'do have RW dir' cmnt
-
add '--write-comments' script param
-
edit script to prefer non-autogenerated subs
Edited last time by Chobitsu on 06/01/2023 (Thu) 12:36:16.