@nostupidquestions Can youtube-dlp download youtube videos with the chapter descriptions like y2down.cc
@kemotep
Tartube doesn’t seem to
You must log in or # to comment.
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-descriptionwhich will output the text to a text file alongside the video file


