如何避免设备静音控制对AVPlayer的影响
我正在使用 AVPlayer 在我的 iPhone 应用程序中播放视频。当我使用设备中提供的静音控制将设备音量静音时,AVPlayer 音量也静音。根据文档,这是正确的行为。
但是,Apple 的默认播放器(播放音乐、播放照片应用程序中的视频)不会发生这种情况。这是为什么呢?我如何实现这种默认行为?
I am using AVPlayer for playing videos in my iPhone application. When I mute the device volume using Mute COntrol provided in the device, AVPlayer volume is also mute. As per the documentation this is the right behavior.
But, it does not happen with the default Player of Apple (Playing Music, Playing videos from Photos app). Why is this? How do I achieve this default behavior?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在 appDidFinishLaunching 中调用了以下代码集:
I called the following set of code in my appDidFinishLaunching:
对于 Swift 3,以下内容会有所帮助。在下面的示例中,它在视图加载时运行:
For Swift 3 the following will help. In the example below it is run when the view loads: