Flowdock
method

ffmpeg_exists?

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: VideoPreviewer
ffmpeg_exists?() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activestorage/lib/active_storage/previewer/video_previewer.rb, line 10
      def ffmpeg_exists?
        return @ffmpeg_exists if defined?(@ffmpeg_exists)

        @ffmpeg_exists = system(ffmpeg_path, "-version", out: File::NULL, err: File::NULL)
      end
Register or log in to add new notes.