Sha256: 284505504e64fdf230c0c6eb391eb75cdc1c7360a6512b3b5cd841acee0c3f6c
Contents?: true
Size: 881 Bytes
Versions: 34
Compression:
Stored size: 881 Bytes
Contents
# frozen_string_literal: true require 'ehbrs/videos/unsupported/profiles/base' module Ehbrs module Videos module Unsupported module Profiles class Philco < ::Ehbrs::Videos::Unsupported::Profiles::Base AUDIO_SUPPORTED_CODECS = %w[aac ac3 eac3 mp3 vorbis wmav2].freeze AUDIO_UNSUPPORTED_CODECS = %w[dts opus].freeze VIDEO_SUPPORTED_CODECS = %w[h264 mpeg4].freeze VIDEO_UNSUPPORTED_CODECS = %w[hevc msmpeg4v3].freeze SUBTITLE_SUPPORTED_CODECS = %w[ass dvd dvd_subtitle hdmv_pgs_subtitle mov_text subrip].freeze SUBTITLE_UNSUPPORTED_CODECS = %w[mov].freeze OTHER_SUPPORTED_CODECS = %w[png ttf].freeze MPEG4_EXTRA_SUPPORTED = %w[xvid].freeze MPEG4_EXTRA_UNSUPPORTED = %w[divx dx50].freeze end end end end end
Version data entries
34 entries across 34 versions & 1 rubygems