INDExOS / media-for-mobile

Media for Mobile
Other
456 stars 178 forks source link

How to fix recorded Video bad quality problem? #79

Open c004245 opened 6 years ago

c004245 commented 6 years ago

Hello, I use media-for-mobile library. I think recoreded video bad quality from media-for-mobile sample.

I checked https://github.com/INDExOS/media-for-mobile/issues/new

so I try

GLES20.glTexParameterf(textureType, GLES20.GL_TEXTURE_MIN_FILTER, GLES20.GL_NEAREST); GLES20.glTexParameterf(textureType, GLES20.GL_TEXTURE_MAG_FILTER, GLES20.GL_LINEAR);

to

GLES20.glTexParameterf(textureType, GLES20.GL_TEXTURE_MIN_FILTER, GLES20.GL_LINEAR); GLES20.glTexParameterf(textureType, GLES20.GL_TEXTURE_MAG_FILTER, GLES20.GL_NEAREST);

on EglUtil.java.

but same bad quality.

perhaps, if you know how to get a better recorded video quality. please advice for me

thanks.