Sha256: 3bf123439d076ef3f7012d2497a1fdbdf57071c031eeacfc31ffcad073aceeb6
Contents?: true
Size: 708 Bytes
Versions: 23
Compression:
Stored size: 708 Bytes
Contents
# frozen_string_literal: true require 'ehbrs_ruby_utils/videos/container' require 'eac_ruby_base0/core_ext' require 'eac_ruby_utils/yaml' module Ehbrs module Tools class Runner class Videos class Probe runner_with :help, :output do desc 'FFProbe em um arquivo de vĂdeo.' pos_arg :file_path end def run run_output end def output_content ::EacRubyUtils::Yaml.dump(container_file.probe_data) end private def container_file_uncached ::EhbrsRubyUtils::Videos::Container.new(parsed.file_path) end end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems