Isvisoft / flutter_screen_recording

A new Flutter plugin for record the screen.
MIT License
142 stars 138 forks source link

It might be beneficial to change the recording format on Android. #114

Open whdals0 opened 1 month ago

whdals0 commented 1 month ago

First of all, thank you for creating such a great library.

While using it, I encountered an issue and would like to request a modification.

Currently, it seems the following settings are being used: mMediaRecorder?.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); mMediaRecorder?.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);

However, when using the AMR_NB codec, audio cannot be played in Chrome and Edge browsers (although the video displays correctly).

By changing these settings to:

mMediaRecorder?.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4); mMediaRecorder?.setAudioEncoder(MediaRecorder.AudioEncoder.AAC); I was able to achieve proper recording and audio playback on Android 13 and 14 devices.

I hope this can be included in the next update.

AhmedYasser20 commented 2 weeks ago

i have problem with current version, it records screen without the sound of app.