tek3
tek3

Reputation: 2115

Enhancing video quality in Blackberry Application

I am facing a problem in enhancing quality of the video feed that i recieve from the camera. For live video feed I am doing something like this

Player player= Manager.createPlayer("capture://video?encoding=jpeg&width=1280&height=1024&quality=normal");

Is there any way to improve video quality in this case and what options are available for 'quality' parameter?

Upvotes: 1

Views: 156

Answers (1)

Vit Khudenko
Vit Khudenko

Reputation: 28418

Check the CameraDemo app from the BB SDK (should be present on yout dev PC).

It has a part that extracts/iterates all available for a device encoding properties:

String encodingString = System.getProperty("video.snapshot.encodings");
... the rest of the code

For instance, I noticed it is possible to request superfine quality: .. &quality=superfine

Upvotes: 1

Related Questions