Sha256: 8c33c3015470ed47fbd9ef7d61b86aee7dd60733585e70f8ba642ff0eed2782c
Contents?: true
Size: 1017 Bytes
Versions: 2
Compression:
Stored size: 1017 Bytes
Contents
# frozen_string_literal: true module MkvToolNix module Types module PropEdit module CommonProperty TRACK_NUMBER = Property.new('track-number', false) UID = Property.new('track-uid', false) NAME = Property.new('name') CODEC_ID = Property.new('codec-id', false) CODEC_NAME = Property.new('codec-name') CODEC_INHERENT_DELAY = Property.new('codec-delay') FLAG_DEFAULT = Property.new('flag-default') FLAG_ENABLED = Property.new('flag-enabled') FLAG_COMMENTARY = Property.new('flag-commentary') FLAG_HEARING_IMPAIRED = Property.new('flag-hearing-impaired') FLAG_ORIGINAL = Property.new('flag-original') FLAG_TEXT_DESCRIPTIONS = Property.new('flag-text-descriptions') FLAG_VISUAL_IMPAIRED = Property.new('flag-visual-impaired') FLAG_FORCED = Property.new('flag-forced') LANGUAGE = Property.new('language') LANGUAGE_IETF = Property.new('language-ietf') end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mkvtoolnix-1.0.0 | lib/mkvtoolnix/types/propedit/common_property.rb |
mkvtoolnix-0.7.0 | lib/mkvtoolnix/types/propedit/common_property.rb |