about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/openai-whisper/ffmpeg-path.patch
blob: 784168d1f62dc9f6931eedf3183b61dfe4dfe547 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/whisper/audio.py b/whisper/audio.py
index 4f5b6e0..bfe7924 100644
--- a/whisper/audio.py
+++ b/whisper/audio.py
@@ -44,7 +44,7 @@ def load_audio(file: str, sr: int = SAMPLE_RATE):
     # and resampling as necessary.  Requires the ffmpeg CLI in PATH.
     # fmt: off
     cmd = [
-        "ffmpeg",
+        "@ffmpeg@/bin/ffmpeg",
         "-nostdin",
         "-threads", "0",
         "-i", file,