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

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?

Related

How to divide call recordings from music player app in 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.

View sound waves while recording audio in Flutter

I want to display sound waves while recording audio in Flutter. I have attached a photo of what I want to do in the photo below. I couldn't find any package about it. Can you help me?

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 sync audio and video in iphone app

In my app i have to play some video files.I also have to play audio files along with these video files.
It is working fine.But the problem is audio and video file is not syncing properly.
Also when the the pause button is pressed the video is stop playing not the audio.Im playing the video in MPMOvieplayer controller.
How to solve this issue.Please help.
You can try using an AVMutableComposition. Try taking a look at this thing and if you need any help with it let me know. I would gladly help.

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.