FAQ#
Since ytdl-sub is relatively new to the public, there has not been many question asked yet. We will update this as more questions get asked.
How do I…#
…remove the date in the video title?#
The TV Show presets by default include
the upload date in the episode_title override variable. This variable is used to set
the title in things like the video metadata, NFO file, etc, which is subsequently read
by media players. This can be overwritten as you see fit by redefining it:
overrides:
episode_title: "{title}" # Only sets the video title
…download age-restricted YouTube videos?#
See yt-dl’s recommended way to download your YouTube cookie, then add it to your ytdl options section of your config:
ytdl_options:
cookiefile: "/path/to/cookies/file.txt"
…automate my downloads?#
This page shows how to set up
ytdl-sub to run automatically on various platforms.
…download large channels?#
See the prebuilt preset chunk_initial_download.
…filter to include or exclude based on certain keywords?#
See the prebuilt preset Filter Keywords.
…prevent creation of NFO file#
Creation of NFO files is done by the NFO tags plugin. It, as any other plugin, can be disabled:
nfo_tags:
enabled: False
…prevent download of images#
The TV Show presets by default downloads images corresponding to show and each episode. This can be prevented by overriding following variables:
overrides:
tv_show_fanart_file_name: "" # to stop creation of fanart.jpg in subscription
tv_show_poster_file_name: "" # to stop creation of poster.jpg in subscription
thumbnail_name: "" # to stop creation of episode thumbnails
…use only part of the media’s title#
ytdl-sub offers a range of functions that can be used to parse a subset of a title for use in your media player. Consider the example:
I want to remove “NOVA PBS - “ from the title
NOVA PBS - Hidden Cities All Around Us.
There are several solutions using ytdl-sub’s scripting capabilities to override
episode_title by manipulating the original media’s title.
"~Nova PBS":
url: "https://www.youtube.com/@novapbs"
episode_title: >-
{
%replace( title, "NOVA PBS - ", "" )
}
"~Nova PBS":
url: "https://www.youtube.com/@novapbs"
episode_title: >-
{
%array_at( %split(title, " - ", 1), -1 )
}
"~Nova PBS":
url: "https://www.youtube.com/@novapbs"
captured_episode_title: >-
{
%regex_capture_many(
title,
[ "NOVA PBS - (.*)" ],
[ title ]
)
}
episode_title: >-
{ %array_at( captured_episode_title, 1 ) }
There is no single solution to this problem - it will vary case-by-case. See our full suite of scripting functions to create your own clever scraping mechanisms.
…force ytdl-sub to re-download a file#
Sometimes users may wish to replace a file already in the archive, for example, if the current file is a lower resolution than desired, missing subtitles, corrupt, etc..
ytdl-sub decides what files have already been downloaded by entries in the
download archive file,
./.ytdl-sub-...-download-archive.json, at the top of the subscription/series/show
output directory in the appropriate
overrides: / ..._directory: library path, and the presence of the corresponding
downloaded files under the same path. To force ytdl-sub to re-download an entry both
need to be removed:
Move aside the downloaded files:
Rename or move the downloaded files, including the associated files with the same base/stem name, such as
./*.nfo,./*.info-json, etc..Ensure
ytdl-subis not running and won’t run, such as by cron:ytdl-subloads the./.ytdl-sub-...-download-archive.jsonfile early, keeps it in memory, and writes it back out late. If it’s running or starts running while you’re modifying that file, then your changes will be overwritten when it exits.Remove the
./.ytdl-sub-...-download-archive.jsonJSON array item:Search for the stem name, the basename without any extension or suffix, common to all the downloaded files in this file and delete that whole entry, from the YouTube ID string to the closing curly braces. Be ware of JSON traling commas.
Run
$ ytdl-sub subagain with the appropriate CLI plugin options:In normal operation, yt-dlp minimizes requests and the files considered for download. To re-download, those options must be disabled or modified. Disable the ‘break_on_existing’ option, set the ‘date_range:’ plugin, and limit the subscriptions to download only the files that you’ve renamed in the steps above.
Set the appropriate dates, including a sufficient margin, and subscription name to include only the files you’ve renamed, and re-run. For example, if you’ve renamed all the files from 2024 in the
NOVA PBSsubscription:ytdl-sub --match="NOVA PBS" sub -o "\ --ytdl_options.break_on_existing False \ --date_range.after 20240101 \ --date_range.before 20250101 \ "
…download a file missing from the archive#
The root causes are unknown, but sometimes even after successful, complete runs, some files will be missing from the archive. To attempt to download those missing files, use the same CLI options as re-downloading a file
…get support?#
…reach out to contribute?#
If you would like to contribute, we’re happy to accept any help, including from non-coders! To find out how you can help this project, you can:
Join our Discord and leave a comment in #development with where you think you can assist or what skills you would like to contribute.
If you just want to fix one thing, you’re welcome to submit a pull request with information on what issue you’re resolving and it will be reviewed as soon as possible.
There is a bug where…#
…ytdl-sub is not downloading#
…ytdl-sub is downloading at 360p or other lower quality#
…ytdl-sub downloads 2-4 videos and then fails#
These are often just limits imposed by the external services that are not bugs. There may be little that can be done about them, but see the ‘_throttle_protection’ preset for more information.
…date_range is not downloading older videos after I changed the range#
Your preset most likely has break_on_existing set to True, which will stop
downloading additional metadata/videos if the video exists in your download archive. Set
the following in your config to skip downloading videos that exist instead of stopping
altogether.
ytdl_options:
break_on_existing: False
After you download your new date_range duration, re-enable break_on_existing to
speed up successive downloads.
…it is downloading non-English title and description metadata#
Most likely the video has a non-English language set to its ‘native’ language. You can tell yt-dlp to explicitly download English metadata using.
ytdl_options:
extractor_args:
youtube:
lang:
- "en"
…Plex is not showing my TV shows correctly#
Set the following for your ytdl-sub library that has been added to Plex.
Scanner: Plex Series Scanner
Agent: Personal Media shows
Visibility: Exclude from home screen and global search
Episode sorting: Library default
YES Enable video preview thumbnails
Under Settings > Agents, confirm Plex Personal Media Shows/Movies scanner has Local Media Assets enabled.
…ytdl-sub errors when downloading a 360p video with resolution assert#
See how to either ignore this specific video or disable resolution assertion entirely here.