camera2 api highframerate recording - Lenovo ZUK Z2 (Plus) Questions & Answers

Many roms without camera2.api support 1080p 60fps recording via snapdragon and other camera apps ( Citrus, Aex etc).
But in my experience z2 plus cant record 60fps if camera2.api is enabled.
ie in gcam 1080p 60fps is not possible.
In nougat roms flashing osstwrp enables camera2.api but after that high frame rate recording is not possible.
In oreo roms which camera2.api already added 60fps is not possible in any camera app.
I'm not a dev.
Tried to edit media profiles, build.prop, magisk modules but no luck.
I'm searching desperately for a solution in xda more than 6 months.
Because nothing matches gcam in photo quality and 60fps is a must have video feature.
Please any dev kind enough do a research and edit library files so that using camera2.api we could record 1080p 60fps.

Please devs @MR.HACKER5476 @davidevinavil @kubersharma @Rodrigo Rodrigues @devabhi @narshi shukla @optimumpro can anyone point look into this matter? This is a really need for Zuk Z2 and I hope you devs can fix this small but weird issue!

GopalKaul said:
Please devs @MR.HACKER5476 @davidevinavil @kubersharma @Rodrigo Rodrigues @devabhi @narshi shukla @optimumpro can anyone point look into this matter? This is a really need for Zuk Z2 and I hope you devs can fix this small but weird issue!
Click to expand...
Click to collapse
Thanks for the support bro.
Atleast someone can make zip/ magisk module so that we can toggle camera2.api on and off.....???

Darkness During Video Recording
Is there any solution for dark video recording on almost every custom rom ?
Please let me know if you have any idea.

Ess Arr said:
Is there any solution for dark video recording on almost every custom rom ?
Please let me know if you have any idea.
Click to expand...
Click to collapse
gcam or any cam...?

Workaround
GopalKaul said:
Please devs @MR.HACKER5476 @davidevinavil @kubersharma @Rodrigo Rodrigues @devabhi @narshi shukla @optimumpro can anyone point look into this matter? This is a really need for Zuk Z2 and I hope you devs can fix this small but weird issue!
Click to expand...
Click to collapse
Since nobody responds this is what Im currently doing as a workaround.
Im in H2O oreo build.
There is afterflash patch for this build.
In that patch there are 2 camera.msm8996.so files.
One for stock and one for gcam.
If you replace stock vendor/lib/hw/camera.msmxxxx.so with gcam .so file then camera2.api works and vice versa.
And reboot not required.
A root explorer is only needed.
Atleast, by a file replace we can switch.

A must read about hal3 and libraries
https://www.reddit.com/r/oneplus/comments/7cz7t5/oneplus_roms_camera_situation/

I hope we can get this HAL changing stuff too! We can use stock camera in conjunction with Google Camera!

GopalKaul said:
I hope we can get this HAL changing stuff too! We can use stock camera in conjunction with Google Camera!
Click to expand...
Click to collapse
There is a hal switcher apk.
But i cant figure it out.
May be u try what this does.

Kid yourself not. Zuk's camera hardware is not capable of 60fps in high resolution. Just look up the specs.

optimumpro said:
Kid yourself not. Zuk's camera hardware is not capable of 60fps in high resolution. Just look up the specs.
Click to expand...
Click to collapse
You think 1080 60fps not possible in zuk..?
Reallly...........????????????
Seriously you never seen a 60fps 1080p footage out of z2 plus...?

optimumpro said:
Kid yourself not. Zuk's camera hardware is not capable of 60fps in high resolution. Just look up the specs.
Click to expand...
Click to collapse
Dude! The stock Camera easily does that!!!

Surprised
GopalKaul said:
Dude! The stock Camera easily does that!!!
Click to expand...
Click to collapse
He is the legendary jaguar's optimumpro right..?
Why he talk like this..?
Surprised.
Anyone still doesn't know 1080p 60fps possible in zuk?.
60fps with gcam working is so ignored in this forum. I individually asked many devs for this in their rom threads but no one responds.
I know its is not easy but at least a reply from a dev is enough.

nikhilZ2 said:
He is the legendary jaguar's optimumpro right..?
Why he talk like this..?
Surprised.
Anyone still doesn't know 1080p 60fps possible in zuk?.
60fps with gcam working is so ignored in this forum. I individually asked many devs for this in their rom threads but no one responds.
I know its is not easy but at least a reply from a dev is enough.
Click to expand...
Click to collapse
Even I have PMed devs like kubersharma but I didn't get much of a response. Kuber is busy with ArrowOS offlately as he is in the development team.. let's see if some dev comes to help . @optimumpro can you figure this? Cause it works on stock ROM and some custom roms with old camera api1..

optimumpro said:
Kid yourself not. Zuk's camera hardware is not capable of 60fps in high resolution. Just look up the specs.
Click to expand...
Click to collapse
I have 720p at 120fps and 1080p at 90fps recorded from zuk z2 plus. I can share it here.

arun356y said:
I have 720p at 120fps and 1080p at 90fps recorded from zuk z2 plus. I can share it here.
Click to expand...
Click to collapse
I think its not needed. As we already know.
Don't know why optimumpro doubted us.
Another useful post I found.
Its from Mi5 thread. But I think its also applicable to us.
I think this is the reason for 60fps not happening.
Camera2.api is incomplete and camera1.api works only in legacy mode.
defcomg said:
The Camera Hal has 2 APIs one Named Qcamera2 and the other Qcamera3
Qcamera2 has the id 256 Qcamera 3 has id 786 or 756 can't remember the exact number now.
By Default all Qualcomm devices after SD600 use Qcamera2 this is what the miui camera uses basically Camera 1 api
Qcamera 3 is what activates camera 2 api it is Camera 2.
When Android Loads up and the camera hal loads it checks for the build.prop flag posted in this thread if it finds it and has value of 1 it sends a command with hal Id 786 effectively disabling qcamera 2.
When Qcamera 3 loads camera 2 is enabled so is camera 1 however camera 1 in qcamera 3 runs in a sort of emulated mode where it only has basic function like color effect exposure compensation white balance etc .
That's why functions such as HDR fail because they are part of qcamera 2.
Now there is a solution for this before I get to that I will explain how the camera is opened
App > Framework Java > Camera Client Lib > Hal Lib.
App executes Camera.open > inside Framework Java Android.Hardware.Camera Class is a method called open this invokes a native method which invokes camera client > Camera Client then also invokes the open method > then the hal starts up the camera . that's the normal way for camera 1.
Inside qcamera2 there is an alternate method called openLegacy what this allow is for qcamera2 to be called directly even with camera 3 active so when using the normal way of camera.open it uses qcamera3 when using camera.openLegacy it defaults back to qcamera2 for that session.
My proposal was yo redirect all camera.open request in the framework to camera.openLegacy so its system wide alternatively is to patch miui Camera .
I hope that makes sense
Click to expand...
Click to collapse

No hope
No hope..
I think we have to live with it.
Either gud still or gud video.
Not both.
Its impossible without proper camera blob and libraries I think.

nikhilZ2 said:
No hope..
I think we have to live with it.
Either gud still or gud video.
Not both.
Its impossible without proper camera blob and libraries I think.
Click to expand...
Click to collapse
email zuk developers maybe.

Not official
arun356y said:
email zuk developers maybe.
Click to expand...
Click to collapse
Chances are low.
Since even camera2.api is not official for us.
Lets hope it comes in zui5 pie.
Since pie is announced for zuk z2 china.
At present the dev or group who made cam2 api for our device are the only hope.
I dont know who did it.

nikhilZ2 said:
At present the dev or group who made cam2 api for our device are the only hope.
I dont know who did it.
Click to expand...
Click to collapse
As far as I remember, it was MR.HACKER5476 who brought camera2 API for our device

Related

Is there any way to enable Full HD/60fps recording?

Is there any way to enable Full HD/60fps recording? The CPU and camera hardware is capable to do more than this.
Have you tried with Open Camera
https://play.google.com/store/apps/details?id=net.sourceforge.opencamera&hl=sv
Or Cinema FV-5
?
https://play.google.com/store/apps/details?id=com.flavionet.android.cinema.lite&hl=sv
-Zteam- said:
Have you tried with Open Camera
hxxxm/store/apps/details?id=net.sourceforge.opencamera&hl=sv
Or Cinema FV-5
?
hxxpxxxe/apps/details?id=com.flavionet.android.cinema.lite&hl=sv
Click to expand...
Click to collapse
I did, even with 60/120 fps setting on Open Camera the video has 30fps
dreszczyk said:
I did, even with 60/120 fps setting on Open Camera the video has 30fps
Click to expand...
Click to collapse
This app seems to work for the Xiaomi Redmi Note 3, please try it out and let me if it works on the Mi6 as well:
https://forum.xda-developers.com/redmi-note-3/themes/google-camera-hdr-60fps-t3656675
If it doesn't work, you can try with this app if you want to:
https://forum.xda-developers.com/search/thread/3115548?query=xiaomi
-Zteam- said:
This app seems to work for the Xiaomi Redmi Note 3, please try it out and let me if it works on the Mi6 as well:
https://forum.xda-developers.com/redmi-note-3/themes/google-camera-hdr-60fps-t3656675
If it doesn't work, you can try with this app if you want to:
https://forum.xda-developers.com/search/thread/3115548?query=xiaomi
Click to expand...
Click to collapse
Ungortunately, none of these work
EDIT:
The first one force-closes and the second produces black images.
dreszczyk said:
Ungortunately, none of these work
EDIT:
The first one force-closes and the second produces black images.
Click to expand...
Click to collapse
I figured out that you need to enable Camera2 Api. The app does open and gives you the opportunity to take '60 FPS' videos, however the videos aren't really 60 FPS.
Here's a link if you want to play a little bit
https://www.reddit.com/r/Android/comments/6tklw0/magisk_module_to_enable_camera2_api_to_use_with/
dreszczyk said:
Ungortunately, none of these work
EDIT:
The first one force-closes and the second produces black images.
Click to expand...
Click to collapse
QuattroKwok said:
I figured out that you need to enable Camera2 Api. The app does open and gives you the opportunity to take '60 FPS' videos, however the videos aren't really 60 FPS.
Here's a link if you want to play a little bit
https://www.reddit.com/r/Android/comments/6tklw0/magisk_module_to_enable_camera2_api_to_use_with/
Click to expand...
Click to collapse
Did you guys made sure to set VideoFrameRate=60 in the videoprofile for 1080p inside freedcam?
If that's not helping you might consider asking the freedcam devs if they can make it possible over here?
https://forum.xda-developers.com/android/apps-games/camera-freedcam-4-0-3-t3115548
I did also find this, but it's for Mi4 not sure if it works on the Mi6, thought.
http://en.miui.com/thread-477750-1-1.html
Also there seems to be some changes about the camera in MIUI 9 (at least for longer exposure times for photos)
None of these apps work. It really sucks, they all crash or don't record at 60fps.
dingoyabuki said:
None of these apps work. It really sucks, they all crash or don't record at 60fps.
Click to expand...
Click to collapse
You can try with Bacon camera as well, it seems to have some support for Xiaomi Mi6, but I don't know if it allows you to record 60FPS.
If not you can always try to ask the freedcam or Bacon Camera developers if they can add support for it.
However it might be that the camera drivers doesn't provide support for it, if that's the case I don't think it is possible at all.
Freedcam thread is over here:
https://forum.xda-developers.com/and...4-0-3-t3115548
Bacon Camera is over here:
https://forum.xda-developers.com/gen...amera-t3253278
No. Literally no app can record at 60fps.

[APP][FEEDBACK] Arnova8G2's Google Camera Port

This thread has been created to provide [device name] feedback to @Arnova8G2 regarding his port of the Google Camera app.
Describe your experience (mostly what doesn't work as expected)
Provide logcats (the dev does not have your phone, so logs are needed if you want him to fix stuff)
Mention @Arnova8G2 when you post your feedback
ALL FEEDBACK PROVIDED IN OTHER THREADS OR WITHOUT LOGS WILL BE IGNORED​
Latest update:
v1.4
Arnova8G2 said:
2017/01/04 – GCMod5 based on Mod By B-S-G
Add toggle for portrait mode or Lens Blur
AutoFocus enhancement and faster
Support level override back in ZSl, front in ZSL_REPROCESSING and Level_3 for OP3/OP3t, MI5,Mi5s
Black screen fix test
Add 4K for devices that do not have it
GCam5.1.018-Arnova8G2-V1.4.apk
** Please mention me in the thread of your device with a logcat or screenshots.
Click to expand...
Click to collapse
Previous versions:
v1.3.1
v1.3
Dornyx said:
Hi! I'd like to get Google Camera app with HDR+ on my Xiaomi Mi A1
Click to expand...
Click to collapse
I'm with you! Wanna buy this smartphone but the fact that it's not have Google camera ported yet stops me from buying.
Dornyx said:
Hi! I'd like to get Google Camera app with HDR+ on my Xiaomi Mi A1, but the official XDA port doesn't work. I've heard of some people using the app in SD625 devices, and the Mi A1 has the 625 SoC, so in theory it may be possible to port the app... I can't code, so does anyone know something about a download link that works on Mi A1 or can mod the XDA apk to work on the Mi A1?
Click to expand...
Click to collapse
Almost every ported gcam works on mia1, have you enabled Camera 2 api ? it needs that enabled to work.
Anyway , you find all these ports on this thread
kraatus90 said:
Almost every ported gcam works on mia1, have you enabled Camera 2 api ? it needs that enabled to work.
Anyway , you find all these ports on this thread
Click to expand...
Click to collapse
I don't know how to enable the API: please explain me, if you can. Moreover, is it possible to add EIS to the stock camera or at least in Google Camera ported?
Dornyx said:
I don't know how to enable the API: please explain me, if you can. Moreover, is it possible to add EIS to the stock camera or at least in Google Camera ported?
Click to expand...
Click to collapse
If you are rooted you have to add below line in build.prop -
Code:
persist.camera.HAL3.enabled=1
after that reboot. you will have working gcam with HDR+. although the slomo option won't work. and you will have EIS too in gcam.
kraatus90 said:
If you are rooted you have to add below line in build.prop -
Code:
persist.camera.HAL3.enabled=1
after that reboot. you will have working gcam with HDR+. although the slomo option won't work. and you will have EIS too in gcam.
Click to expand...
Click to collapse
where to add these lines in build prop ?
Red_Man 898 said:
where to add these lines in build prop ?
Click to expand...
Click to collapse
Anywhere. for example add at the end of build.prop.
kraatus90 said:
If you are rooted you have to add below line in build.prop -
Code:
persist.camera.HAL3.enabled=1
after that reboot. you will have working gcam with HDR+. although the slomo option won't work. and you will have EIS too in gcam.
Click to expand...
Click to collapse
Is it possible to modify build.prop without root? Or is it possible to root the phone without having a PC nearby?
Dornyx said:
Is it possible to modify build.prop without root? Or is it possible to root the phone without having a PC nearby?
Click to expand...
Click to collapse
1.No unless you have custom recovery which mia1 doesn't have yet.
2. nope.
i think Google camera hdr+ need a snapdragon 820++ isn't it?
@thewarrior2 It doesn't, it needs a 64bit OS and a snapdragon SoC packing a certain Hexagon DSP
Can anybody post comparison pictures of hdr+ and stock xiaomi camera app? I am really interested in seeing the results before buying this phone.
phonequestion said:
Can anybody post comparison pictures of hdr+ and stock xiaomi camera app? I am really interested in seeing the results before buying this phone.
Click to expand...
Click to collapse
visit mi 5s section for example there is alot of detail with hdr+
Is there really any difference?? i am confused.. My redmi note 3 pro can take better pic with Google camera than this mi a1
kraatus90 said:
Almost every ported gcam works on mia1, have you enabled Camera 2 api ? it needs that enabled to work.
Anyway , you find all these ports on this thread
Click to expand...
Click to collapse
Thanks mate, now i found the glitch
Rakibboss said:
Is there really any difference?? i am confused.. My redmi note 3 pro can take better pic with Google camera than this mi a1
Click to expand...
Click to collapse
If you cant find the difference by looking at the samples posted, then you dont need HDR+.
But the fact is the difference is night and day!
Google is primarily known for software, which is what HDR+ is all about.. It uses the camera h/w, takes many pics when you click the shutter button, each in different contrast, and applies some kick-ass machine learning algorithms on every pixel of each groups of pics it took, fuses all of them, to get awsome looking pics.. Thats all it does, and thats all that no other stock camera app does from any other manufacturer. Thats why it beats even iphone.
So basically, google does more through software , what all others achieve through multiple h/w.. Reason why pixel 2 still has single Camera.
ashjas said:
If you cant find the difference by looking at the samples posted, then you dont need HDR+.
But the fact is the difference is night and day!
Google is primarily known for software, which is what HDR+ is all about.. It uses the camera h/w, takes many pics when you click the shutter button, each in different contrast, and applies some kick-ass machine learning algorithms on every pixel of each groups of pics it took, fuses all of them, to get awsome looking pics.. Thats all it does, and thats all that no other stock camera app does from any other manufacturer. Thats why it beats even iphone.
So basically, google does more through software , what all others achieve through multiple h/w.. Reason why pixel 2 still has single Camera.
Click to expand...
Click to collapse
I said the redmi note 3 pro has better performance with Google camera than this A1.. That's why i said, i am confused
So... does this camera work after modifying build.prop? Could someone upload a few pics comparing the original camera app to this one?
Enviado desde mi Nexus 7 mediante Tapatalk
HDR+ works great~
I'll put comparison later
[email protected] said:
HDR+ works great~
I'll put comparison later
Click to expand...
Click to collapse
Can you enable the raw support?

50 mp camera apk

In daylight pictures are clear but you will see no difference on mobile compare it in pc.
Capture 51.9 mp image.
Don't use higher megapixel in low light .
Camera 2 api required
Not working
Only showing a maximum of 4.9MP for both front and back camera.
I am on official AOSPExtended rom, 7.1.2, XT1643
saranshkmr.in said:
Only showing a maximum of 4.9MP for both front and back camera.
I am on official AOSPExtended rom, 7.1.2, XT1643
Click to expand...
Click to collapse
Aby Lad has an unfortunate Habit of not specifying whether Camera2API is needed for the ports he makes. I enabled it on Stock Rom, can disable it at any time, the app works perfect for me. Chances are its not working for you as it needs camera2api
TCUofficial said:
Aby Lad has an unfortunate Habit of not specifying whether Camera2API is needed for the ports he makes. I enabled it on Stock Rom, can disable it at any time, the app works perfect for me. Chances are its not working for you as it needs camera2api
Click to expand...
Click to collapse
Will try and report
saranshkmr.in said:
Will try and report
Click to expand...
Click to collapse
Most custom ROMs on the G4 plus don't have camera2api built in, if it fails set back what you changed to 1 to 0. Then reboot
Why would you want that? The Moto G4 Plus has a omnivision OV16860, which is a 16MP sensor. So even if you could select 50MP, the image would only be interpolated ("resized"/"upscaled") and thus the quality would be the same or worse.
The photo resolution is not software limited like the video resolution (the sensor would be capable of [email protected], [email protected], [email protected])
Working on Flyme 6.
TheXorg said:
The photo resolution is not software limited like the video resolution (the sensor would be capable of [email protected], [email protected], [email protected])
Click to expand...
Click to collapse
Would there be a way to possibly enable these options? It would be awesome to be able to shoot 4k and have that high of framerates.
mewsayzthecat said:
Would there be a way to possibly enable these options? It would be awesome to be able to shoot 4k and have that high of framerates.
Click to expand...
Click to collapse
It is theoretically possible (from hardware side) to get [email protected], that's the maximum the Snapdragon 617 can handle. But it would require modifying the camera HAL, which is AFAIK nearly impossible.
TheXorg said:
It is theoretically possible (from hardware side) to get [email protected], that's the maximum the Snapdragon 617 can handle. But it would require modifying the camera HAL, which is AFAIK nearly impossible.
Click to expand...
Click to collapse
Oh ok, so it's basically just the processor is not capable of handling those other resolutions. That makes sense. What exactly is the "camera HAL", I've never heard of this term before.
Bro it can works on lineage os of moto G4plus device
skacit said:
Bro it can works on lineage os of moto G4plus device
Click to expand...
Click to collapse
No
mewsayzthecat said:
What exactly is the "camera HAL", I've never heard of this term before.
Click to expand...
Click to collapse
"HAL" stands for Hardware Abstraction Layer and basically is used to connect the high-level API's to the driver and hardware.
Most OEMs have the Camera HAL closed source, as AFAIK they don't have permission to share the code (Unless they own the camera, like in sony's case). So it being closed source is makes it terribly hard and time-consuming to edit or create a custom camera HAL.
You can learn a whole lot more here: https://www.xda-developers.com/came...opers-make-hardware-work-without-source-code/
Does It Works On Resurrection Remix Version
Chiku787 said:
Does It Works On Resurrection Remix Version
Click to expand...
Click to collapse
Yes just flash this zip this enable camera 2 it worked on lineage os try on rr
Thank you. Working 33, 24 and 11 mp on RM 5 pro.

Long exposure mode 32 sec [request]

Hi,
With the all Oreo roms out there for our zuk z2, developers had tried very hard to bring camera2 API to our device.
Though still we are missing those incredible night shots from stock with long exposure upto 32 sec.
All Oreo roms supports exposure time upto 1/2 seconds only.
This is a request to all developers please add support for long exposure time in manual camera.
Some developers had achieved this through modifying camera libs of their device.
Hope some one will look into this.
I know this is not easy and might not significantly important to all but this is humble request to all developers.
Thanks.
Samirmathakiya said:
Hi,
With the all Oreo roms out there for our zuk z2, developers had tried very hard to bring camera2 API to our device.
Though still we are missing those incredible night shots from stock with long exposure upto 32 sec.
All Oreo roms supports exposure time upto 1/2 seconds only.
This is a request to all developers please add support for long exposure time in manual camera.
Some developers had achieved this through modifying camera libs of their device.
Hope some one will look into this.
I know this is not easy and might not significantly important to all but this is humble request to all developers.
Thanks.
Click to expand...
Click to collapse
Ya , i too miss the manual camera setting from the zui camera app.
I tried using different camera apps liie miui,etc but none of them work perfectly.
flash123nani said:
Ya , i too miss the manual camera setting from the zui camera app.
I tried using different camera apps liie miui,etc but none of them work perfectly.
Click to expand...
Click to collapse
Same here.
Tried almost all camera mods but none of them worked.
It may be hal3 issue or some libs need to be modified.
The redmi note 4 have a mod for change camera libs to take 32s exposure.
Maybe for Zuk needs makes that change too.
sergiolibel said:
The redmi note 4 have a mod for change camera libs to take 32s exposure.
Maybe for Zuk needs makes that change too.
Click to expand...
Click to collapse
Exactly !!
I think very few people are interested in this or didn't aware about the power of manual camera controls !!
If more and more people requests then may be some developer will try to do the same.
Seriously, a good range of shutter speed is needed in manual camera. In oreo roms other than zui, i get a max of 1s exposure time in Lightroom's camera. Nothing good. Zui stock camera had 32s exposure time that was impressive. Rom developers are throwing at us several features but this part is always overlooked.
Also, in case of video recording, I cannot get 60fps or truly 120 fps slo-mo working in oreo custom roms. And recording is also much darker, i mean it is useless to record video anymore. These things need to be taken care of, rather than some cutting edge features, devs should fix these first (if it's possible)
Hi any developer here ??
Please consider this
Hey,
Is it possible to introduce both camera API 1&2 and so hal1 and hal3 like OnePlus users did ??
If we do this then we can use long exposure and Google cam by just switching hals.
Take a look at this-
https://www.reddit.com/r/oneplus/comments/7cz7t5/oneplus_roms_camera_situation/
You can do one thing, flash a oreo rom and dual boot zui for long expo shots
Rohan459 said:
You can do one thing, flash a oreo rom and dual boot zui for long expo shots
Click to expand...
Click to collapse
I tried to search that too but some users reported that dual boot doesn't work with Oreo roms.
And also it would not be feasible to boot both major os.
If anyone is here who has some skills then please try to implement old camera API & hal.
Anyone?
I hope the Dev's consider this.. @optimumpro @amog787 @rodrigo rodriguez @AgustinLorenzo @davidevinavil ..
Sent from my ZUK Z2 Plus using XDA Labs
Is this any helpful ??
As new oss cam Hal are introduced in our device
https://forum.xda-developers.com/mi-5s/development/mi-5s-camera-2-api-fix-t3622901
GCam-
Why no one talking about pink tint in low light?
Is it fixed already without sacrificing other features?
If yes give me the fle link.

[Magisk][Module] Hevc Recording Enabler v0.1 for ZUK Z2 Plus

Hey everyone i don't own the device but @deathbreath2010 wanted to enable HEVC for this device so i made a magisk module for everyone to try
This module enable HEVC/H265 video recording on ZUK Z2 Plus
The bitrate values are the same as original and also half
the aac bitrate values are untouched
Why should I use HEVC instead of H264?
Basically, HEVC provide the same quality as H264, but using half the bitrate, this means that you can record videos with the same quality but using less space, or, if you're more inclined to that, record video that use the same space but with better quality (less compression, therefore less artifacts and more details overall).
Stock Bitrate changelog:
Code:
v0.1
- Initial release
Half Bitrate changelog:
Code:
v0.1
- Initial release
Dhruvit Pokharna said:
Hey everyone i don't own the device but @deathbreath2010 wanted to enable HEVC for this device so i made a magisk module for everyone to try
This module enable HEVC/H265 video recording on ZUK Z2 Plus
The bitrate values are the same as original and also half
the aac bitrate values are untouched
Why should I use HEVC instead of H264?
Basically, HEVC provide the same quality as H264, but using half the bitrate, this means that you can record videos with the same quality but using less space, or, if you're more inclined to that, record video that use the same space but with better quality (less compression, therefore less artifacts and more details overall).
Stock Bitrate changelog:
Code:
v0.1
- Initial release
Half Bitrate changelog:
Code:
v0.1
- Initial release
Click to expand...
Click to collapse
Thanks for the module. I'm on Android 10(StagOS) and I can confirm HEVC is enabled. Wanted to post screenshot of media info but upload fails..
Cheers
deathbreath2010 said:
Thanks for the module. I'm on Android 10(StagOS) and I can confirm HEVC is enabled. Wanted to post screenshot of media info but upload fails..
Cheers
Click to expand...
Click to collapse
Your Welcome, Thanks for the Donation.
On ZUK Z2 there is also a problem with slow motion in google camera. It only works sometimes and is quite dark compared to normal video. I don't know if this is also related to media_profiles. On Oneplus 3 slow motion in Gcam was fixed, but i don't know how they did this. Do you have any idea?
Cheers
deathbreath2010 said:
On ZUK Z2 there is also a problem with slow motion in google camera. It only works sometimes and is quite dark compared to normal video. I don't know if this is also related to media_profiles. On Oneplus 3 slow motion in Gcam was fixed, but i don't know how they did this. Do you have any idea?
Cheers
Click to expand...
Click to collapse
Yes i think slow motion requires low iso or shutter speed to work so it gets dark for everyone in slow motion. i havent really found a slowmo fix that works for oneplus 3 yet and i dont think its working for anyone if you know one that works for oneplus 3 i can try to make it work for zuk z2 plus.
Dhruvit Pokharna said:
Yes i think slow motion requires low iso or shutter speed to work so it gets dark for everyone in slow motion. i havent really found a slowmo fix that works for oneplus 3 yet and i dont think its working for anyone if you know one that works for oneplus 3 i can try to make it work for zuk z2 plus.
Click to expand...
Click to collapse
In your other thread about hevc someone posted a zip and said that slow mo is working for him in Android 10 i he replaces some libs. But I don't know if this is good advice. I rarely use slow mo, but it is nice to have anyway.
Cheers
deathbreath2010 said:
In your other thread about hevc someone posted a zip and said that slow mo is working for him in Android 10 i he replaces some libs. But I don't know if this is good advice. I rarely use slow mo, but it is nice to have anyway.
Cheers
Click to expand...
Click to collapse
i saw but below that some guy tried and said it doesnt work.

Categories

Resources