From 8ea0360b1c56994d171c71d1accda51c1edcd973 Mon Sep 17 00:00:00 2001 From: markalex2209 <55829038+markalex2209@users.noreply.github.com> Date: Sun, 11 May 2025 22:34:45 +0300 Subject: [PATCH] [DOCS] Add faq about disabling parts of presets to address #506 (#1223) Closes https://github.com/jmbannon/ytdl-sub/issues/506 . Thanks @markalex2209 ! --------- Co-authored-by: Aliaksei Markouski --- docs/source/faq/index.rst | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/docs/source/faq/index.rst b/docs/source/faq/index.rst index f8ae6653..a3dad246 100644 --- a/docs/source/faq/index.rst +++ b/docs/source/faq/index.rst @@ -62,6 +62,29 @@ See the prebuilt preset :doc:`chunk_initial_download See the prebuilt preset :doc:`Filter Keywords `. +...prevent creation of NFO file +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Creation of NFO files is done by :ref:`NFO tags plugin `. It, as any other plugin, can be disabled: + +.. code-block:: yaml + + nfo_tags: + enabled: False + +...prevent download of images +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The :ref:`config_reference/prebuilt_presets/tv_show:TV Show` presets by default downloads images corresponding to show and each episode. +This can be prevented by overriding following variables: + +.. code-block:: yaml + + 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 + There is a bug where... -----------------------