How to divide call recordings from music player app in flutter - flutter

I am new in flutter.. I am creating a music player app in flutter.. Everything is working fine but I want to divide call recordings from the music player app.. Can ANYONE help me to divide call recordings and music from music player app in flutter.

Related

Flutter: The song does not appear in the audio files and the music player, how can we solve this?

In Flutter, the song was successfully downloaded and it appears in the Music file, but the song does not appear in the audio files and the music player, how can we solve this?

Flutter - How to create two audio handler using just audio and audio service?

I am working on a meditation app where a background music starts to play when the user opens the app. App Displays list of playlist. When user click on the playlist it should play the playlist audio and pause the background music. If the music stops, background music should resume.
How can I achieve this feature using just_audio and audio_service ? I have experimented with the example_multiple_handler solution provided by the author of audio_service package. But it didn't work.

How to get the current output dB values of background music to display a sound level meter in iOS?

Is there an easy way to read current dB sound level values of what iOS it putting out to the speakers / or from background music that is playing?
No. An app can not get the audio output levels for the sound that any other app, for instance a background music player, is currently playing.

iPhone App kill my iphone music player?

As soon as I open app it kills my music player. I dont want user to feel such experience. Sometime user don't want to stop their music player while app browsing. For that purpose I will provide explicitly a button in my app which stop music player.
So what function I need to call and where in my App which doesn't stop music player as soon as I launch app without single second delay or any interruption ?
You need to play with AVAudioSession. This Link may help you to achieve that.

Play video's audio track when enter background?

I'm using mpmovieplayer to play video on ios 4, and I want to keep the audio playing when my app enter background, but it doesn't work. I thing it's because video player use GPU to render video on screen and this is not allowed by apple when app enter background.
So, is there any way to do that? There are some apps have this feature, and they seems just use the mpmovieplayer, is it work by detach the video layer of mpmovieplayer?
Thanks for your answer!
You'll need to have separate audio file and video file for this. Play both when you need to play video and just the audio when app gets into background.