Making the world a better place, one genetic experiment at a time.

> _

gopher://umbrellacorp.io

  • 2 Posts
  • 66 Comments
Joined 1 year ago
cake
Cake day: June 10th, 2023

help-circle
  • I don’t know, maybe there’s a healthy medium? My home computing is still very personal.

    I will hang out on IRC with friends, while I hack away on my low-tech coding projects in the background.

    My smart phone is primarily used for comms and navigation, and I’m not stuck to it out in public.

    I refuse a smart home, and the only mindless automation I take part in is dedicated to movies and TV.

    Circling back around, I do feel like not all hope is currently lost.









  • What do you mean descriptions? Like the video’s description body text? If so, yes. Gimme one moment to get on my computer, and I’ll edit this comment to include the command args.

    EDIT: This is the specific shell alias I use when I’m archiving videos for backup.

    yt-archive() {
        yt-dlp --embed-chapters \
            --concurrent-fragments 5 \
            --restrict-filenames \
            --write-description \
            --write-subs \
            --write-auto-subs \
            --sub-langs="en.*" \
            --paths="~/Archival/" \
            "$@"
    }
    

    The command arg you’re likely most interested in is --write-description which will output the text to a text file alongside the video file