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