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
Basically, MJPEG is just a sequence of JPEG images.
As far as I understand, nothing but generic libjpeg libraries are used to encode such images to be used in an MJPEG stream.
These libraries, including libjpeg-turbo, can use various tweaks in JPEG encoding that can really improve both the quality and compression rate.
You can tweak chroma subsampling and use progressive encoding instead of baseline encoding in JPEG.
But... That is all about JPEG. Is it possible to do the same thing with MJPEG?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Basically, MJPEG is just a sequence of JPEG images.
As far as I understand, nothing but generic libjpeg libraries are used to encode such images to be used in an MJPEG stream.
These libraries, including libjpeg-turbo, can use various tweaks in JPEG encoding that can really improve both the quality and compression rate.
You can tweak chroma subsampling and use progressive encoding instead of baseline encoding in JPEG.
But... That is all about JPEG. Is it possible to do the same thing with MJPEG?
The text was updated successfully, but these errors were encountered: