We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
你的新功能建议是否牵扯到某个常见的问题? 滚动时暂停播放视频
你希望达到的效果 希望在滚动过程中可以不要暂停画中画的视频播放
你能考虑到的可选实现方案
目前手动控制了一下,但是是否可以做成默认实现。以及不确定逻辑是否有问题。
if #available(iOS 14.0, *) { player.playbackObserver.pictureInPictureStatusDidChangeExeBlock = { player in let status: [SJPictureInPictureStatus] = [.running, .starting] if status.contains(player.playbackController.pictureInPictureStatus) { player.pauseWhenScrollDisappeared = false } else { player.pauseWhenScrollDisappeared = true } } }
The text was updated successfully, but these errors were encountered:
收到, 后续版本完善一下
Sorry, something went wrong.
已在新版完善 SJBaseVideoPlayer v3.7.3
No branches or pull requests
你的新功能建议是否牵扯到某个常见的问题?
滚动时暂停播放视频
你希望达到的效果
希望在滚动过程中可以不要暂停画中画的视频播放
你能考虑到的可选实现方案
目前手动控制了一下,但是是否可以做成默认实现。以及不确定逻辑是否有问题。
The text was updated successfully, but these errors were encountered: