Can anyone tell me how to enable Camera2 API in Meizu m2 note ? - XDA Assist

I have flashed Lineage OS 14 but the camera does not have any manual controls like manual focus,iso ,etc. But this features were present in Flyme so i believe we can enable the camera2 api somehow to get access to the manual controls again.

Related

OPO Camera2 API support

Hi all,
does anybody know if there's any ROM which actually supports Camera2 API? Such as COS 12s or any other app.
Thank you
None so far.. Don't think cam2 api will be coming for the one

[Lenovo Zuk Z2] - Camera2 api

Hello guys, I wanted to ask some information about the lenovo Zuk Z2 (NOT Pro) camera. I would be interested in the possibility to shoot in RAW (DNG) format, but I still don't have a clear idea wheter there are any rom out there which allow camera2 api usage. Does anybody know if it is possible to shoot RAW, or if there is any hardware limitation in doing so? To be honest, I still don't fully understand if there can actually be any hardware limitation, or if it is only a matter of proper implementation of camera2 api. Thanks in advance, and btw I'm new so hi everybody

Enabling Raw Capture (rooted)

I rooted my device and edited build.prop to enable camera2 api fully, but although the camera2 probe app says that I have full camera2 api support, it also says that raw capture is still not available. Does anyone know how I can enable this? thanks
AFAIK it is not possible. There have been lots of threads on this and all say it is not possible

[APP] Open Camera with working camera2 API

Download Link:
https://drive.google.com/open?id=11NpfjayIkJTjcu3j_IKdEV4GOPFU9p3v
Open Camera Official Website:
https://opencamera.sourceforge.io/
As some of you might know, the amazing open source camera app known as Open Camera has issues taking advantage of the Mi 5s's camera2 API capabilities. This is because of a few lines in the app source code that disable all camera2 API functionalities if not all the cameras on the device support it. This is the case with the Mi 5s. The back camera has Level 2(Full) API capabilities but the front camera only has Level_0(Legacy) capabilities.
As a result, the app decides that the entire phone should not be able to use the camera2 API in order to improve stability but unfortunately, this means that users like us are not able to take advantage of one of the best camera apps on the market. This is why I went through the source code and changed a few lines of code in order to bring the Open Camera app to all devices that might be able to use it. Just be careful in using the front camera with camera2 API features as it will likely cause your app or your system to crash and restart.
I'll try to keep this "unlocked" version updated at least once a month.
For those interested, here are the few lines of code I changed:
Code:
if (deviceLevel == CameraCharacteristics.INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY) {
return requiredLevel == deviceLevel;
}
// deviceLevel is not LEGACY, can use numerical sort
return requiredLevel <= deviceLevel;
to
Code:
return true;
in .\opencamera-code\app\src\main\java\net\sourceforge\opencamera\CameraControler\CameraControlerManager2 function isHardwareLevelSupported
and
Code:
this.supports_video_stabilization = camera_features.is_video_stabilization_supported;
to
Code:
this.supports_video_stabilization = true;
in .\opencamera-code\app\src\main\java\net\sourceforge\opencamera\Preview\Preview
Open camera is released under GPL v3 or later. All the original code can be found from the official project website linked above. No changes aside from the one mentioned were made.
Thank you. I have tried it on MIUI 9 (latest Xiaomi.eu stable) and I see the option for turning on camera 2 api, but after I do that I have no options for video stabilisation. Do I have to enable anything else? Does video stabilisation work for you in 1080p and even 4k?
I didn't even realise that the feature was still disabled, thanks for letting me know. I'll release an updated build later tonight.
Thank you dev for this mod. This is exactly what I'm looking for. High FR on normal speed recording.
Any update about video stabilization? I can enable camera 2 and stabilization, but EIS is not working. Is there any way to have EIS like on Redmi Note 5 pro, 6x, Mi max 3 in open camera? They have eis using gyro and video recording is smooth as on pixel phones.

After enabling camera2 api; hardware level supprot category showing limited

Hi,
I have rooted my eml-l29. But after editing build prop for camera2 api and restart the device, it's hardware level support category is showing limited. Before enabling camera2 api that was same. I think I done exactly same as the procedure. So my question is can the camera2 api be enabled in Huawei P20 or any huawei devices or it's hardware does not support camera2 api enabling.
Thanks.

Categories

Resources