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