Re: [mediacapture-image] Support for zero shutter lag use-cases?

IIUC your concern is with accessing RAW images from the sensor, is this correct? (If so, could you please rename the bug?)  

If that'd be the case, it could be supported via some extension to the [`PhotoCapabilities`](https://w3c.github.io/mediacapture-image/##photocapabilities-section)
```
interface PhotoCapabilities {
  ...
  readonly attribute FrozenArray<DOMString>       supportedImageFormats;
};
```
and a similar entry to the [`PhotoSettings`](https://w3c.github.io/mediacapture-image/##photosettings-section) dictionary, e.g. 
```
dictionary PhotoSettings {
  ...
  DOMString   imageFormat;
};
```
`takePhoto()` would return a `Blob` with the [`type`](https://developer.mozilla.org/en-US/docs/Web/API/Blob/type), e.g. `image/x-adobe-dng` or `image/tiff`.  

Would that address your use case?


-- 
GitHub Notification of comment by miguelao
Please view or discuss this issue at https://github.com/w3c/mediacapture-image/issues/162#issuecomment-290152484 using your GitHub account

Received on Wednesday, 29 March 2017 16:53:38 UTC