Sha256: eadc96a39fb45303c79bf08c2c197be98a49a9adf094726a5d57001c73117335

Contents?: true

Size: 734 Bytes

Versions: 6

Compression:

Stored size: 734 Bytes

Contents

# frozen_string_literal: true

require 'json'
require 'eac_ruby_utils/core_ext'
require 'ehbrs_ruby_utils/executables'
require 'ehbrs_ruby_utils/videos/container/info'

module EhbrsRubyUtils
  module Videos
    module Container
      class File
        enable_simple_cache
        common_constructor :path do
          self.path = path.to_pathname
        end

        private

        def info_uncached
          ::EhbrsRubyUtils::Videos::Container::Info.new(
            ::JSON.parse(
              ::EhbrsRubyUtils::Executables.ffprobe.command(
                '-hide_banner', '-print_format', 'json', '-show_format', '-show_streams', path
              ).execute!
            )
          )
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
ehbrs-tools-0.16.1 vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/videos/container/file.rb
ehbrs-tools-0.16.0 vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/videos/container/file.rb
ehbrs_ruby_utils-0.3.0 lib/ehbrs_ruby_utils/videos/container/file.rb
ehbrs-tools-0.15.0 vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/videos/container/file.rb
ehbrs-tools-0.14.1 vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/videos/container/file.rb
ehbrs-tools-0.14.0 vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/videos/container/file.rb