Exception: FFMPEG::FFprobeNotFound
- Defined in:
- lib/ffmpeg/errors.rb
Overview
Raised when FFprobe binary is not found
Instance Method Summary collapse
-
#initialize(binary = "ffprobe") ⇒ FFprobeNotFound
constructor
A new instance of FFprobeNotFound.
Constructor Details
#initialize(binary = "ffprobe") ⇒ FFprobeNotFound
Returns a new instance of FFprobeNotFound.
16 17 18 |
# File 'lib/ffmpeg/errors.rb', line 16 def initialize(binary = "ffprobe") super("#{binary} not found. Please install FFmpeg: https://ffmpeg.org/download.html") end |