I captured the video in front camera using MediaRecorder
. It was mirrored. For image I used matrix.preScale()
method to reverse the image. But for video I can't reverse it.
if (!camera.getConfig().isFaceCamera)
{
//For Back camera
mediaRecorder.setOrientationHint(90);
}
else
{
//For Front camera
mediaRecorder.setOrientationHint(270);
}