VideoContentHint

@objc
public enum VideoContentHint : Int

VideoContentHint describes the content type of a video source so that downstream encoders, etc. can properly decide on what parameters will work best. These options mirror https://www.w3.org/TR/mst-content-hint/ .

  • No hint has been provided.

    Declaration

    Swift

    case none = 0
  • The track should be treated as if it contains video where motion is important.

    This is normally webcam video, movies or video games.

    Declaration

    Swift

    case motion = 1
  • The track should be treated as if video details are extra important.

    This is generally applicable to presentations or web pages with text content, painting or line art.

    Declaration

    Swift

    case detail = 2
  • The track should be treated as if video details are extra important, and that significant sharp edges and areas of consistent color can occur frequently.

    This is generally applicable to presentations or web pages with text content.

    Declaration

    Swift

    case text = 3
  • Declaration

    Swift

    public var description: String { get }