SurfaceViewHolder.setFixedSize(width,height) not setting size to video saved in gallery
I want to set the video aspect ratio to 1:1 capturing during android media recorder.
Im using holder.setFixedSize in onSurfaceChanged method
override fun surfaceChanged(holder: SurfaceHolder, format: Int, w: Int, h: Int) {
// If your preview can change or rotate, take care of those events here.
// Make sure to stop the preview before resizing or reformatting it.
if (mHolder.surface == null) {
// preview surface does not exist
return
}
// stop preview...