[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:
Fabian Wüthrich 2024-05-19 18:08:32 -06:00 committed by Viktor Havaka
parent 4ecf03a008
commit 45f6239b50

View file

@ -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;