ios 中的视频录制音频未录制在此处的 sdk 导航中
In video recording audio is not record on here sdk navigation in ios
我正在尝试使用 HERE SDK 录制带转弯导航的视频。导航未启动时视频录制工作正常,但是当导航继续并尝试录制视频时出现此错误
[avas] AVAudioSession.mm:1074:-[AVAudioSession setActive:withOptions:error:]: Deactivating an audio session that has running I/O. All I/O should be stopped or paused prior to deactivating the audio session.
HERE导航的音频与视频录制应用程序的音频存在冲突。我们最新的 SDK 允许您实现音量控制和闪避。
Volume ducking is the practice of manipulating volume based on audio focus. It allows another app such as a phone call to flag its audio as having higher priority and "take over" the current device audio. To grant or request audio focus, call NavigationManager.AudioPlayer.getStreamId() to retrieve the current audio stream and then use it with the Android AudioManager.
https://developer.here.com/documentation/android-premium/dev_guide/topics/audio-management.html
我正在尝试使用 HERE SDK 录制带转弯导航的视频。导航未启动时视频录制工作正常,但是当导航继续并尝试录制视频时出现此错误
[avas] AVAudioSession.mm:1074:-[AVAudioSession setActive:withOptions:error:]: Deactivating an audio session that has running I/O. All I/O should be stopped or paused prior to deactivating the audio session.
HERE导航的音频与视频录制应用程序的音频存在冲突。我们最新的 SDK 允许您实现音量控制和闪避。
Volume ducking is the practice of manipulating volume based on audio focus. It allows another app such as a phone call to flag its audio as having higher priority and "take over" the current device audio. To grant or request audio focus, call NavigationManager.AudioPlayer.getStreamId() to retrieve the current audio stream and then use it with the Android AudioManager.
https://developer.here.com/documentation/android-premium/dev_guide/topics/audio-management.html