From 8698acedbea69b9a4fc16fb2a559c00c488c3941 Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Wed, 1 Mar 2023 16:27:00 -0800 Subject: [PATCH] link --- src/ytdl_sub/validators/file_path_validators.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ytdl_sub/validators/file_path_validators.py b/src/ytdl_sub/validators/file_path_validators.py index 457b17c4..1ca0e9e9 100644 --- a/src/ytdl_sub/validators/file_path_validators.py +++ b/src/ytdl_sub/validators/file_path_validators.py @@ -16,7 +16,8 @@ class FFmpegFileValidator(StringValidator): super().__init__(name, value) if not os.path.isfile(self.value): raise self._validation_exception( - f"Expects an {self._ffmpeg_dependency} executable at '{self.value}', but does not exist" + f"Expects an {self._ffmpeg_dependency} executable at '{self.value}', but does not exist. " + f"See https://github.com/jmbannon/ytdl-sub#installation on how to install ffmpeg dependencies." ) @property