link
This commit is contained in:
parent
616234219c
commit
8698acedbe
1 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue