NuvioStreaming/MPVKit/Demo/Demo-macOS/Demo-macOS/Player/MPVProperty.swift
2026-04-18 11:07:21 +05:30

17 lines
733 B
Swift

import Foundation
struct MPVProperty {
static let videoParamsColormatrix = "video-params/colormatrix"
static let videoParamsColorlevels = "video-params/colorlevels"
static let videoParamsPrimaries = "video-params/primaries"
static let videoParamsGamma = "video-params/gamma"
static let videoParamsSigPeak = "video-params/sig-peak"
static let videoParamsSceneMaxR = "video-params/scene-max-r"
static let videoParamsSceneMaxG = "video-params/scene-max-g"
static let videoParamsSceneMaxB = "video-params/scene-max-b"
static let duration = "duration"
static let timePos = "time-pos"
static let path = "path"
static let pause = "pause"
static let pausedForCache = "paused-for-cache"
}