android/media-samples

Only Audio Playing - Android 7.0

majidalik opened this issue · 0 comments

I am facing an issue on OS 7.0 and 8.0, When i recorded video and playing it, Its playing only audio not showing video.

----Using following setup
mMediaRecorder.setAudioSource(MediaRecorder.AudioSource.CAMCORDER);
mMediaRecorder.setVideoSource(MediaRecorder.VideoSource.DEFAULT);
mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
if (mNextVideoAbsolutePath == null || mNextVideoAbsolutePath.isEmpty()) {
mediaFileR = getVideoFilePath(getActivity().getApplicationContext());
}
mMediaRecorder.setOutputFile(mediaFileR.getAbsolutePath());
mMediaRecorder.setVideoEncodingBitRate(10000000);
mMediaRecorder.setVideoFrameRate(30);
mMediaRecorder.setVideoSize(mVideoSize.getWidth(), mVideoSize.getHeight());

    mMediaRecorder.setVideoEncoder(MediaRecorder.VideoEncoder.H264);// MPEG_4_SP
    mMediaRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);