forked from organicmaps/organicmaps
[ios] Interrupt podcasts instead of duck them during TTS
Use AVAudioSessionCategoryOptionInterruptSpokenAudioAndMixWithOthers to interrupt spoken content during TTS. Signed-off-by: Fabian Wüthrich <me@fabwu.ch>
This commit is contained in:
parent
4ecf03a008
commit
45f6239b50
1 changed files with 3 additions and 1 deletions
|
@ -247,7 +247,9 @@ using Observers = NSHashTable<Observer>;
|
|||
}
|
||||
if (![[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback
|
||||
mode:mode
|
||||
options:AVAudioSessionCategoryOptionMixWithOthers | AVAudioSessionCategoryOptionDuckOthers
|
||||
options:
|
||||
AVAudioSessionCategoryOptionInterruptSpokenAudioAndMixWithOthers |
|
||||
AVAudioSessionCategoryOptionDuckOthers
|
||||
error:nil] ||
|
||||
![[AVAudioSession sharedInstance] setActive:YES error:nil])
|
||||
return;
|
||||
|
|
Loading…
Add table
Reference in a new issue