Sha256: 4e3dbf96fa9cfe44789df6f5cafeeb4436d122d2e18836df3077100950251f28
Contents?: true
Size: 914 Bytes
Versions: 1
Compression:
Stored size: 914 Bytes
Contents
require_relative 'ffprober/version' require_relative 'ffprober/dynamic_initializer' require_relative 'ffprober/parser' require_relative 'ffprober/format' require_relative 'ffprober/stream' require_relative 'ffprober/audio_stream' require_relative 'ffprober/video_stream' require_relative 'ffprober/subtitle_stream' require_relative 'ffprober/chapter' require_relative 'ffprober/ffprobe_version' require 'json' module Ffprober def self.path @path ||= begin path = ENV['PATH'].split(File::PATH_SEPARATOR).find do |path_to_check| File.executable?(File.join(path_to_check, executable_name)) end path && File.expand_path(executable_name, path) end end def self.executable_name @executable_name ||= self.windows? ? 'ffprobe.exe' : 'ffprobe' end def self.windows? !!(RUBY_PLATFORM =~ /(mingw|mswin)/) end class InvalidInputFileError < ::StandardError; end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ffprober-0.4.2 | lib/ffprober.rb |