CharacteristicEnum

enum CharacteristicEnum

Track characteristics.

  • Textual information meant for display when no other text representation is selected.

    Declaration

    Swift

    case forcedSubtitles
  • Textual or audio media component containing a textual description (intended for audio synthesis) or an audio description describing a visual component.

    Declaration

    Swift

    case describesVideo
  • Simplified or reduced captions as specified in United States Code Title 47 CFR 79.103©(9).

    Declaration

    Swift

    case easyToRead
  • A media characteristic that indicates that a track selection option includes frame-based content.

    Declaration

    Swift

    case frameBased
  • Main media component(s) which is/are intended for presentation if no other information is provided.

    Declaration

    Swift

    case mainProgram
  • A media characteristic that indicates that a track or media selection option contains original content.

    Declaration

    Swift

    case originalContent
  • A media characteristic that indicates that a track or media selection option contains a language translation and verbal interpretation of spoken dialog.

    Declaration

    Swift

    case voiceOverTranslation
  • Textual media component containing transcriptions of spoken dialog and auditory cues such as sound effects and music for the hearing impaired.

    Declaration

    Swift

    case caption
  • Textual transcriptions of spoken dialog.

    Declaration

    Swift

    case subtitle
  • Textual media component containing transcriptions of spoken dialog and auditory cues such as sound effects and music for the hearing impaired.

    Declaration

    Swift

    case alternate
  • Media content component that is supplementary to a media content component of a different media component type.

    Declaration

    Swift

    case supplementary
  • Experience that contains a commentary (e.g. director’s commentary) (typically audio).

    Declaration

    Swift

    case commentary
  • Experience that contains an element that is presented in a different language from the original (e.g. dubbed audio, translated captions).

    Declaration

    Swift

    case dubbedTranslation
  • Textual or audio media component containing a textual description (intended for audio synthesis) or an audio description describing a visual component.

    Declaration

    Swift

    case description
  • Media component containing information intended to be processed by application specific elements.

    Declaration

    Swift

    case metadata
  • Experience containing an element for improved intelligibility of the dialogue.

    Declaration

    Swift

    case enhancedAudioIntelligibility
  • Experience that provides information, about a current emergency, that is intended to enable the protection of life, health, safety, and property, and may also include critical details regarding the emergency and how to respond to the emergency.

    Declaration

    Swift

    case emergency
  • Textual representation of a songs’ lyrics, usually in the same language as the associated song as specified in SMPTE ST 2067-2.

    Declaration

    Swift

    case karaoke
  • Creates a new instance with the specified raw value.

    If there is no value of the type that corresponds with the specified raw value, this initializer returns nil. For example:

    enum PaperSize: String {
        case A4, A5, Letter, Legal
    }
    
    print(PaperSize(rawValue: "Legal"))
    // Prints "Optional(PaperSize.Legal)"
    
    print(PaperSize(rawValue: "Tabloid"))
    // Prints "nil"
    

    Declaration

    Swift

    init?(rawValue: UInt64)

    Parameters

    rawValue

    The raw value to use for the new instance.