Sha256: a5df2923e19f14d24042c78e0ac241fbdd70ad3076f962d1ab1b84d5074882d6
Contents?: true
Size: 1.72 KB
Versions: 2
Compression:
Stored size: 1.72 KB
Contents
# frozen_string_literal: true require 'eac_cli/core_ext' require 'ehbrs/videos/unsupported/check_set' require 'ehbrs/videos/unsupported/search' require 'ehbrs/videos/unsupported/profiles' module Ehbrs module Tools class Runner class Videos class Unsupported PROFILES = %w[aoc philco samsung].freeze runner_with :help do desc 'Procura e converte vídeos não suportados pelas TVs de EHB/RS.' bool_opt '-f', '--fix', 'Converte vídeos para o formato apropriado.' arg_opt '-p', '--profiles', "Seleciona os perfis (#{PROFILES.join(', ')})." pos_arg 'paths', repeat: true end def run infov 'Profiles', profiles.join(', ') infov 'Paths', paths paths.each do |d| ::Ehbrs::Videos::Unsupported::Search.new(d, file_options) end end private def file_check_set_uncached ::Ehbrs::Videos::Unsupported::CheckSet.build(profiles, :file) end def track_check_set_uncached ::Ehbrs::Videos::Unsupported::CheckSet.build(profiles, :track) end def paths parsed.paths end def file_options { file_check_set: file_check_set, track_check_set: track_check_set, fix: parsed.fix? } end def profiles_uncached parsed.profiles.if_present(PROFILES) { |v| v.split(',').map(&:strip) } .map { |name| profile_class(name).instance } end def profile_class(profile_name) ::Ehbrs::Videos::Unsupported::Profiles.const_get(profile_name.camelize) end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ehbrs-tools-0.39.0 | lib/ehbrs/tools/runner/videos/unsupported.rb |
ehbrs-tools-0.38.0 | lib/ehbrs/tools/runner/videos/unsupported.rb |