mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-20 08:51:45 +00:00
17 lines
733 B
Swift
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"
|
|
}
|