From bee29b5d6047f018f83b66d02279a66ed31e0289 Mon Sep 17 00:00:00 2001 From: Cohvir <63691557+Cohvir@users.noreply.github.com> Date: Tue, 5 Mar 2024 14:24:21 +0100 Subject: [PATCH] Improve examples --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index c9f262f..c93ed28 100644 --- a/README.md +++ b/README.md @@ -50,8 +50,8 @@ You can change some behaviors by tweaking the configuration file. ```json { "root_path": "videos", - "movies_folder_name": "Film", - "series_folder_name": "Serie", + "movies_folder_name": "Movies", + "series_folder_name": "Series", "download_subtitles": true, "download_default_language": true, "selected_language": "English", @@ -59,15 +59,15 @@ You can change some behaviors by tweaking the configuration file. } ``` #### Options -| Key | Default Value | Description | Value Example | -|---------------------------|---------------|------------------------------------------------------------------------------------|--------------------------| -| root_path | videos | Path where the script will add movies and tv series. Do not put trailing slash. | media/streamingcommunity | -| movies_folder_name | Film | The folder name where all the movies will be placed. Do not put trailing slash. | downloaded-movies | -| series_folder_name | Serie | The folder name where all the TV Series will be placed. Do not put trailing slash. | mytvseries | -| download_subtitles | true | Whether or not you want all the found subtitles to be downloaded. | false | -| download_default_language | true | Whether or not you want to download only the default Italian audio language. | true | -| selected_language | English | If "download_default_language" is False the script will download this language | English | -| max_worker | 20 | How many workers will cooperate to download .ts file (High value may lag your pc) | 20 | +| Key | Default Value | Description | Value Example | +|---------------------------|---------------|-----------------------------------------------------------------------------------------|--------------------------| +| root_path | videos | Path where the script will add movies and tv series folders. Do not put trailing slash. | media/streamingcommunity | +| movies_folder_name | Movies | The folder name where all the movies will be placed. Do not put trailing slash. | downloaded-movies | +| series_folder_name | Series | The folder name where all the TV Series will be placed. Do not put trailing slash. | mytvseries | +| download_subtitles | true | Whether or not you want all the found subtitles to be downloaded. | false | +| download_default_language | true | Whether or not you want to download only the default Italian audio language. | false | +| selected_language | English | If `"download_default_language"` is `False` the script will download this language | French | +| max_worker | 20 | How many workers will cooperate to download .ts file (High value may slow down your pc) | 30 | ## Tutorial For a detailed walkthrough, refer to the [video tutorial](https://www.youtube.com/watch?v=Ok7hQCgxqLg&ab_channel=Nothing)