Sha256: 4f5273080cc6f3d1fe960f46372b7776bcda58338fbdaf850882c30f8f709789

Contents?: true

Size: 824 Bytes

Versions: 6

Compression:

Stored size: 824 Bytes

Contents

# frozen_string_literal: true

require 'ehbrs_ruby_utils/videos2/unsupported/profiles/base'

module EhbrsRubyUtils
  module Videos2
    module Unsupported
      module Profiles
        class Aoc < ::EhbrsRubyUtils::Videos2::Unsupported::Profiles::Base
          AUDIO_SUPPORTED_CODECS = %w[aac ac3 mp2 mp3].freeze
          AUDIO_UNSUPPORTED_CODECS = %w[eac3 vorbis].freeze

          VIDEO_SUPPORTED_CODECS = %w[h264 mpeg4].freeze
          VIDEO_UNSUPPORTED_CODECS = %w[hevc].freeze

          SUBTITLE_SUPPORTED_CODECS = %w[ass dvd_subtitle hdmv_pgs_subtitle subrip].freeze
          SUBTITLE_UNSUPPORTED_CODECS = %w[mov_text].freeze

          OTHER_SUPPORTED_CODECS = %w[].freeze

          MPEG4_EXTRA_SUPPORTED = %w[xvid].freeze
          MPEG4_EXTRA_UNSUPPORTED = %w[].freeze
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ehbrs_ruby_utils-0.44.3 lib/ehbrs_ruby_utils/videos2/unsupported/profiles/aoc.rb
ehbrs_ruby_utils-0.44.2 lib/ehbrs_ruby_utils/videos2/unsupported/profiles/aoc.rb
ehbrs_ruby_utils-0.44.1 lib/ehbrs_ruby_utils/videos2/unsupported/profiles/aoc.rb
ehbrs_ruby_utils-0.44.0 lib/ehbrs_ruby_utils/videos2/unsupported/profiles/aoc.rb
ehbrs_ruby_utils-0.41.1 lib/ehbrs_ruby_utils/videos2/unsupported/profiles/aoc.rb
ehbrs_ruby_utils-0.41.0 lib/ehbrs_ruby_utils/videos2/unsupported/profiles/aoc.rb