From 583284b6b081be6a6c0722a3f83538019f8e7e3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ostroluck=C3=BD?= Date: Thu, 4 Dec 2025 01:28:41 +0100 Subject: [PATCH] Bazarr: Add missing webrtcvad dependency This improves reliability of subtitle auto syncing mechanism. In Nix package, because of this missing dependency bazarr/ffsubsync had to fall back to less reliable audiotok algorithm for analyzing the audio layer of video files. See https://github.com/morpheus65535/bazarr/blob/v1.5.3/bazarr/subtitles/tools/subsyncer.py#L25-L30 --- pkgs/by-name/ba/bazarr/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/ba/bazarr/package.nix b/pkgs/by-name/ba/bazarr/package.nix index 1d4e0db9b8d0..84d4445c5f64 100644 --- a/pkgs/by-name/ba/bazarr/package.nix +++ b/pkgs/by-name/ba/bazarr/package.nix @@ -36,6 +36,7 @@ stdenv.mkDerivation rec { ps.pillow ps.setuptools ps.psycopg2 + ps.webrtcvad ])) ] ++ runtimeProgDeps;