Exception: FFMPEG::FFprobeNotFound

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

Overview

Raised when FFprobe binary is not found

Instance Method Summary collapse

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