Hi,
On 08/08/2011 12:53 AM, Adam Baker wrote:
On Friday 05 August 2011, Hans de Goede wrote:
This sounds to be a good theme for the Workshop, or even to KS/2011.
Agreed, although we don't need to talk about this for very long, the solution is basically:
Define a still image retrieval API for v4l2 devices (there is only 1 interface for both functions on these devices, so only 1 driver, and to me it makes sense to extend the existing drivers to also do still image retrieval).
Modify existing kernel v4l2 drivers to provide this API
Write a new libgphoto driver which talks this interface (only need to do one driver since all dual mode cams will export the same API).
is something to discuss at the workshop.
This approach sounds fine as long as you can come up with a definition for the API that covers the existing needs and is extensible when new cameras come along and doesn't create horrible inefficiencies by not matching the way some cameras work. I've only got one example of such a camera and it is a fairly basic one but things I can imagine the API needing to provide are
- Report number of images on device
Make that report highest picture number present call. We want to provide consistent numbers for pictures even if some are deleted, renumbering them on the fly when a picture gets deleted is no good, esp. since multiple apps may be using the device at the same time. So we may have a hole in out numbering, hence my initial proposal of having the following API:
int get_max_picture_nr() int is_picture_present(int nr) int get_picture(int nr) int delete_picture(int nr) int delete_all()
- Select an image to read (for some cameras selecting next may be much more
efficient than selecting at random although whether that inefficiency occurs when selecting, when reading image info or when reading image data may vary) 3) Read image information for selected image (resolution, compression type, FOURCC)
I have not yet thought about meta-data. But I agree we will need some metadata to convey things like the format of the picture data returned by get_picture (this will be raw data any conversion / post processing will be done in userspace).
- Read raw image data for selected image
- Delete individual image (not supported by all cameras)
- Delete all images (sometimes supported on cameras that don't support
individual delete)
I'm not sure if any of these cameras support tethered capture but if they do then add Take photo Set resolution
That is what the webcam mode is for :)
I doubt if any of them support EXIF data, thumbnail images, the ability to upload images to the camera or any sound recording but if they do then those are additional things that gphoto2 would want to be able to do.
sound recordings can be handled like pictures but with a different FOURCC code (conveying the contents is audio stored in fmt foo).
Regards,
Hans