I am working on a video sharing project and wonder what if there\'s a video format that is compatible with most players on Web, Android & iOS.
The app will work like
Adding more info from Andrew T.'s answer.
To set the parameters from Andrew's conclusion:
// To Set Audio Encoder: AAC
mMediaRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC);
// To set Video Encoder: H264
mMediaRecorder.setVideoEncoder(MediaRecorder.VideoEncoder.H264);
// To set Output Video format: mp4
mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
Hope it helps...!!!