Flutter: audio and video player in one package - flutter

is there any package that provides both an audio and video player?
take video input but it has options to play video as audio in the background and while the screen is off.

Related

AudioCache is dead, long live Sources

I want to add an Audio player in flutter, but for any Audio player package show this text in Audio Cash part:
so how can I add an Audio player in my application?

Flutter Camera Plugin Recorded Video Quality

I record video with flutter camera package. However recorded video quality is very low although I set resolutionPreset is ResolutionPreset.max. Video details: video's resolution 640/480 which I record from flutter, video's resolution 1920/1080 whick I record with device native camera application. How can I improve video quality like as video recorded by native camera application?

Flutter video player quality control for hls videos

I am developing a video player app using flutter. In this app, there will be a section for video streaming(HLS). I am using video_player package of Flutter for it, but there is no option to change the quality(1080p, 720p, 240p etc.). How can I implement video quality selection in video_player package?

Flutter video player check if video is mute

I have a small video player app and a draggable bar that allows to adjust the volume of video. However, some videos do not have any sound (mute), in this case I want to disable that bar.
How is it possible to check this?
I am using video_player: ^2.2.5 package https://pub.dev/packages/video_player to display the videos.
In my widget I use _videoPlayerController.value.volume which returns 1.0 both for mute and videos with sound, which is volume of the controller but not video itself.

How to mute MPMoviePlayerController sound in iPhone

I have two kinds of media,
video with sound
recorded voice audio
I want to play recorded voice audio with video but mute video sound.
To play these medias, I used the MPMoviePlayerController for video and the AQPlayer for recorded audio.
Is it possible?
If so, Anyone has an idea, Please?