Allowing background music to play while VLCKit plays a video stream
Posted: 29 Mar 2022 21:54
In an app I am writing using VLCKit as the video component I would like to be able to listen to background music, like from Apple Music / Amazon Music etc etc while my App displays a streamed video. Is there an option I can send to the player when initialising it to allow this?
I have tried a couple of things, like when my app launches I tell AVFramework that I want to play ambient sounds..
Currently whenever I start a stream with VLC it pauses the music playing in the background, even if I have the stream volume set to 0.
When I stop the VLC Stream the music begins to play again, does anyone know if this is possible?
Thanks in advance for any help!
I have tried a couple of things, like when my app launches I tell AVFramework that I want to play ambient sounds..
Code: Select all
do
{
try AVAudioSession.sharedInstance().setCategory(AVAudioSession.Category.ambient)
try AVAudioSession.sharedInstance().setActive(true)
}
catch let error as NSError
{
print(error)
}
When I stop the VLC Stream the music begins to play again, does anyone know if this is possible?
Thanks in advance for any help!