diff --git a/HackerTube/Features/VideoPlayer/VideoPlayerView.swift b/HackerTube/Features/VideoPlayer/VideoPlayerView.swift index 99607c3..d94303a 100644 --- a/HackerTube/Features/VideoPlayer/VideoPlayerView.swift +++ b/HackerTube/Features/VideoPlayer/VideoPlayerView.swift @@ -25,6 +25,9 @@ struct VideoPlayerView: UIViewControllerRepresentable { playerViewController.canStartPictureInPictureAutomaticallyFromInline = true #endif + // The playback speeds don't appear on tvOS unless this is explicitly set. + playerViewController.speeds = AVPlaybackSpeed.systemDefaultSpeeds + return playerViewController }