We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: