Show stream opening status with AVPlayer

This commit is contained in:
Arkadiusz Fal
2023-05-21 12:09:18 +02:00
parent 2b7ccc4b03
commit c6798be167
6 changed files with 174 additions and 143 deletions

View File

@@ -5,42 +5,50 @@ struct PlayerGestures: View {
private var player = PlayerModel.shared
@ObservedObject private var model = PlayerControlsModel.shared
@Default(.avPlayerUsesSystemControls) private var avPlayerUsesSystemControls
var showGestures: Bool {
player.activeBackend == .mpv || !avPlayerUsesSystemControls
}
var body: some View {
HStack(spacing: 0) {
gestureRectangle
.tapRecognizer(
tapSensitivity: 0.2,
doubleTapAction: {
model.presentingControls = false
let interval = TimeInterval(Defaults[.gestureBackwardSeekDuration]) ?? 10
player.backend.seek(relative: .secondsInDefaultTimescale(-interval), seekType: .userInteracted)
},
anyTapAction: {
singleTapAction()
model.update()
}
)
if showGestures {
gestureRectangle
.tapRecognizer(
tapSensitivity: 0.2,
doubleTapAction: {
model.presentingControls = false
let interval = TimeInterval(Defaults[.gestureBackwardSeekDuration]) ?? 10
player.backend.seek(relative: .secondsInDefaultTimescale(-interval), seekType: .userInteracted)
},
anyTapAction: {
singleTapAction()
model.update()
}
)
gestureRectangle
.tapRecognizer(
tapSensitivity: 0.2,
doubleTapAction: {
model.presentingControls = false
player.backend.togglePlay()
},
anyTapAction: singleTapAction
)
gestureRectangle
.tapRecognizer(
tapSensitivity: 0.2,
doubleTapAction: {
model.presentingControls = false
player.backend.togglePlay()
},
anyTapAction: singleTapAction
)
gestureRectangle
.tapRecognizer(
tapSensitivity: 0.2,
doubleTapAction: {
model.presentingControls = false
let interval = TimeInterval(Defaults[.gestureForwardSeekDuration]) ?? 10
player.backend.seek(relative: .secondsInDefaultTimescale(interval), seekType: .userInteracted)
},
anyTapAction: singleTapAction
)
gestureRectangle
.tapRecognizer(
tapSensitivity: 0.2,
doubleTapAction: {
model.presentingControls = false
let interval = TimeInterval(Defaults[.gestureForwardSeekDuration]) ?? 10
player.backend.seek(relative: .secondsInDefaultTimescale(interval), seekType: .userInteracted)
},
anyTapAction: singleTapAction
)
}
}
}