gpt4 book ai didi

ios - RPPreviewViewController 在播放后禁用音频

转载 作者:行者123 更新时间:2023-11-28 06:27:03 26 4
gpt4 key购买 nike

我在我的应用程序中使用 replaykit,在用户完成录制后,我提供了一个按钮来“分享”视频。我展示了 RPPreviewViewController,如果我点击视频中的播放,当我返回应用程序时,音频将无法播放。只有当我回到之前的 viewController 并回到有录音的那个时,它才会再次工作。

我的应用是一个音乐创作应用,所以音频非常重要。我什至尝试在播放 View 消失后重置 AVAudioSession 类别,如下所示:

func showPreview() {
if let unwrappedPreview = self.preview {
unwrappedPreview.previewControllerDelegate = self
self.present(unwrappedPreview, animated: true, completion: nil)
} else {
let alert = UIAlertController(title: "No recordings to share", message: "By hitting the play or record button you can record a video of your composition to share with others. Once you hit stop, the recording will be saved and ready to share.", preferredStyle: .alert)
let okAction = UIAlertAction(title: "OK", style: .default, handler: nil)
alert.addAction(okAction)
self.present(alert, animated: true, completion: nil)
}
}

func previewControllerDidFinish(_ previewController: RPPreviewViewController) {
let audioSession = AVAudioSession.sharedInstance()
try! audioSession.setCategory(AVAudioSessionCategoryPlayback)
dismiss(animated: true)
}

最佳答案

不确定这是否有任何帮助,但刚刚发现我们的问题,我们在其中使用 OalPlayback 来获得音效。在显示预览 Controller 之前,我现在释放 Oal 对象,并在取消预览后创建一个新对象。

关于ios - RPPreviewViewController 在播放后禁用音频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41559649/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com