diff --git a/docs/Bazarr/.pages b/docs/Bazarr/.pages index 818394936..16f3360c0 100644 --- a/docs/Bazarr/.pages +++ b/docs/Bazarr/.pages @@ -2,4 +2,5 @@ nav: - Home: index.md - Basic-Guide: Setup-Guide.md - After Install Configuration: After-install-configuration.md - - Scripts: /Bazarr/scripts/ \ No newline at end of file + - Scripts: /Bazarr/scripts/ + - Tips \ No newline at end of file diff --git a/docs/Bazarr/Tips/Bazarr-suggested-scoring.md b/docs/Bazarr/Tips/Bazarr-suggested-scoring.md new file mode 100644 index 000000000..99372d389 --- /dev/null +++ b/docs/Bazarr/Tips/Bazarr-suggested-scoring.md @@ -0,0 +1,53 @@ +# Suggested Scoring + +You just setup Bazarr and wonder which scoring you should use/setup for your subtitles and sync ? + +I'll going to suggest here a scoring what would work for most common languages, with this scoring 99% of your downloaded subs should be the correct ones for your release. + +- Setting it to low could result in bad subs or completely out of sync and un-syncable. +- Setting to high could result in less subs. + +## Sonarr Subtitle Minimum Score + +`Settings` => `Sonarr` + +![!Sonarr: Minimum Score](images/settings-sonarr-options-minimum-score.png) + +Set the Minimum Score to `90` + +This score is the minimal score that the subs should match to for your release, settings this to low could result in bad subs or completely out of sync and un-syncable. + +## Radarr Subtitle Minimum Score + +`Settings` => `Radarr` + +![!Radarr: Minimum Score](images/settings-radarr-options-minimum-score.png) + +Set the Minimum Score to `80` + +This score is the minimal score that the subs should match to for your release, settings this to low could result in bad subs or completely out of sync and un-syncable. + +## Synchronization Score Threshold + +`Settings` => `Subtitles` + +![!Score Threshold](images/settings-subtitles-sync-score.png) + +- Enable `Automatic Subtitles Synchronization` at step 3. +- Enable `Series Score Threshold` at step 4 and set the score to `96`. +- Enable `Movies Score Threshold` at step 5 and set the score to `86`. + +This will set the Synchronization Score Threshold, meaning at which score bazarr will sync the subtitles. + +!!! info + The synchronization is best effort based on the following. + + - it use the embedded subtitles track as reference, if not present. + - it needs to extract the audio track and analyze it to define start of sentence markers. + +### Why not set the Synchronization Score to max + +??? faq "Why not set the Synchronization Score to max" + It's kinda useless to start with why would you want to try to sync perfectly matching subs in the first place ? + + I personally noticed that when setting it to high 98-100 I would actually get subs that are like 1 second to slow/fast. diff --git a/docs/Bazarr/Tips/images/settings-radarr-options-minimum-score.png b/docs/Bazarr/Tips/images/settings-radarr-options-minimum-score.png new file mode 100644 index 000000000..fcbfa8eb9 Binary files /dev/null and b/docs/Bazarr/Tips/images/settings-radarr-options-minimum-score.png differ diff --git a/docs/Bazarr/Tips/images/settings-sonarr-options-minimum-score.png b/docs/Bazarr/Tips/images/settings-sonarr-options-minimum-score.png new file mode 100644 index 000000000..6ba8c3887 Binary files /dev/null and b/docs/Bazarr/Tips/images/settings-sonarr-options-minimum-score.png differ diff --git a/docs/Bazarr/Tips/images/settings-subtitles-sync-score.png b/docs/Bazarr/Tips/images/settings-subtitles-sync-score.png new file mode 100644 index 000000000..a8ac67562 Binary files /dev/null and b/docs/Bazarr/Tips/images/settings-subtitles-sync-score.png differ