Exception: FFMPEG::FFmpegNotFound

Inherits:
Error
  • Object
show all
Defined in:
lib/ffmpeg/errors.rb

Overview

Raised when FFmpeg binary is not found

Instance Method Summary collapse

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