[FIX] [HELIUM] [HYDROGEN] Video Recording Fix - Xiaomi Mi Max ROMs, Kernels, Recoveries, & Other D

Here is a fix for the video recording not working. This fix works on my Stock Global ROM for the Helium. It may work on CM13 based roms but there may be bugs. This works on the 64/128gb Chinese Helium and the 32gb Chinese Hydrogen.
Helium:
https://drive.google.com/file/d/0B5I_q70mNuR4Vk1xOXQyZ3pfUkE/view?usp=sharing
Hydrogen:
https://drive.google.com/file/d/0B5I_q70mNuR4ZmlKOGx6Qjlid1k/view?usp=sharing

Thanks for trying. Just reporting... On CM13 third edition hydrogen fix doesn't work.The very first time it recorded video with no sound, then on second attempt it recorded just the first frame and no sound. Reboot doesn't help.

nijel8 said:
Thanks for trying. Just reporting... On CM13 third edition hydrogen fix doesn't work.The very first time it recorded video with no sound, then on second attempt it recorded just the first frame and no sound. Reboot doesn't help.
Click to expand...
Click to collapse
Try it on Resurrection Remix and let me know if it works on there. I don't have a Hydrogen so I can't test. There are also so many more options in Resurrection Remix that I don't even want to use plain CM13.

I try it in 2. Edition of CM13. Video work, but i have no Sound.

Tried it right now. RR V2 : Video works but playback seems to be 4x faster than normal. And no Sound.
I really hope you find the problem. It's simple the best phone I eher had.

I hope too, you can fix this. Big Thanks for your help and work.

Worked once twice in Remix. Now it only captures stills with sounds.

RR Mi Max Pro 128GB
Great job, working a treat - thank you.

I have researched/experimented with the video recording bug and I am pretty sure this is the problem.
That is exactly what happens on CM13 based ROMs on Mi Max. I have replicated it by rebooting with usb connected and recording works... dies after usb disconnect and device wakes from deep sleep. I even did dirty remux of brocken recording on my PC and it proved all video frames were there but with incorrect duration.
So looks like we have to wait and hope Xiaomi to fix the device firmware/kernel? part that causes the deep sleep problem on CM(very unlikely) or release source code.
As you probably know the list of all vendor files pulled from miui to build CM is based on the official CM device tree for Note 3 Pro(kenzo) which has very similar hardware... They even pull many of those files for kenzo from Mi Max miui base( android_device_xiaomi_kenzo/proprietary-files.txt). I compared the camera firmwares for both and it is exactly the same bit-by-bit. And yet kenzo CM13 don't have that problem. So it must be some other firmware part or kernel issue.
Also wondering why as far as I know miui doesn't have that problem using same firmware/kernel!? Must be something in the camera app or framework or something...

nijel8 said:
I have researched/experimented with the video recording bug and I am pretty sure this is the problem.
That is exactly what happens on CM13 based ROMs on Mi Max. I have replicated it by rebooting with usb connected and recording works... dies after usb disconnect and device wakes from deep sleep. I even did dirty remux of brocken recording on my PC and it proved all video frames were there but with incorrect duration.
So looks like we have to wait and hope Xiaomi to fix the device firmware/kernel? part that causes the deep sleep problem on CM(very unlikely) or release source code.
As you probably know the list of all vendor files pulled from miui to build CM is based on the official CM device tree for Note 3 Pro(kenzo) which has very similar hardware... They even pull many of those files for kenzo from Mi Max miui base( android_device_xiaomi_kenzo/proprietary-files.txt). I compared the camera firmwares for both and it is exactly the same bit-by-bit. And yet kenzo CM13 don't have that problem. So it must be some other firmware part or kernel issue.
Also wondering why as far as I know miui doesn't have that problem using same firmware/kernel!? Must be something in the camera app or framework or something...
If I have time I will try to build xposed module to intercept the video and fix the first frame duration as dirty/temporary fix(as explained in the link).
EDIT: Ok... As prove of concept build xposed module for testing. It fixes recorded videos but needs some tuning... The first few audio samples are cut off in the repair process and audio gets out of sync. Have to figure out how to fix that...
Just install the attached apk, enable the module in xposed installer and reboot. That's it. Just record as usual. Works with CM and RR(not tested) build-in Camera apps only(for now...).
Click to expand...
Click to collapse
Seems to work on CM13 (3rd version) on my Hydrogen but only if the recorded videos are saved in internal storage (the camera apps non responsive if saving to sdcard). Thanks for putting this fix out, really appreciated.

cmk7128 said:
Seems to work on CM13 (3rd version) on my Hydrogen but only if the recorded videos are saved in internal storage (the camera apps non responsive if saving to sdcard). Thanks for putting this fix out, really appreciated.
Click to expand...
Click to collapse
I should've not called it a fix, it's just a dirty hack... I still can't find a way to sync audio/video properly. That sdcard problem is probably related to much lower write speeds.

nijel8 said:
I should've not called it a fix, it's just a dirty hack... I still can't find a way to sync audio/video properly. That sdcard problem is probably related to much lower write speeds.
Click to expand...
Click to collapse
Thanks for the explanation. Hopefully there will be a permanent fix to the video recording problem in due course. For now, your hack will come in handy.

Let's get back on-topic here thanks guys...

You may want to look at CPUAwake code. with CPUAwake enabled there is no problem with camera after deep sleep and overnight battery drain is still the same (0-1%). It will be great to make "dirty hack" independent from any app (xposed , cpuawake) as a piece of code (somewhere in boot.img inits?). Thank you. as for "no sound" in my patches/builds(some stock miui audio-related files files) I have no problem with it but in some cameras "mono" should be choosen as an audio source. or it could be only "mono" - never tried them separate.

zelipukin said:
You may want to look at CPUAwake code. with CPUAwake enabled there is no problem with camera after deep sleep and overnight battery drain is still the same (0-1%). It will be great to make "dirty hack" independent from any app (xposed , cpuawake) as a piece of code (somewhere in boot.img inits?). Thank you. as for "no sound" in my patches/builds(some stock miui audio-related files files) I have no problem with it but in some cameras "mono" should be choosen as an audio source. or it could be only "mono" - never tried them separate.
Click to expand...
Click to collapse
Yep, my initial test confirms CPUAwake keeps video recording working after device wake up... Thank you for your discovery:good:
I tried a similar idea initiating wakelock before recording but it didn't work...
Is CPUAwake open source? Can't find any code...

I think if we open the hood (UI) there is a single line that tells to the system something like: "system, dont do this !"
somewhere in smalis. cant find it. even worse - dont understand smalis

zelipukin said:
I think if we open the hood (UI) there is a single line that tells to the system something like: "system, dont do this !"
somewhere in smalis. cant find it. even worse - dont understand smalis
Click to expand...
Click to collapse
I actually examined CPUAwake code and it uses android native wake lock acquire() call so nothing special there. And it doesn't release the wake lock till disabled. Don't like that... Trying to find better solution... We'll see...

Let me know if this fixes video recording on CM based ROMs...
Add these two lines to /system/build.prop:
Code:
media.camera.ts.monotonic=0
#[STRIKE]persist.camera.HAL3.enabled=true[/STRIKE]
... and do full reboot(not just soft). USB disconnected... Test video recording, if it works leave device with screen off for 5 minutes, test recording again. It should work(fixed)...
EDIT: I should've mentioned it will only work if video recording was working for you after fresh reboot but brakes when device wakes up from deep sleep... This means all early CM based ROMs are out... they didn't have any video recording working at all or no sound...
EDIT 2: Second line is not needed. Only first line keeps video recording working after deep sleep...

ajsmsg78 said:
Here is a fix for the video recording not working. This fix works on my Stock Global ROM for the Helium. It may work on CM13 based roms but there may be bugs. This works on the 64/128gb Chinese Helium and the 32gb Chinese Hydrogen.
Helium:
https://drive.google.com/file/d/0B5I_q70mNuR4Vk1xOXQyZ3pfUkE/view?usp=sharing
Hydrogen:
https://drive.google.com/file/d/0B5I_q70mNuR4ZmlKOGx6Qjlid1k/view?usp=sharing
Click to expand...
Click to collapse
Deleted
Found the fix in the rr mods folder
Thanks!

Skalexs said:
Deleted
Found the fix in the rr mods folder
Thanks!
Click to expand...
Click to collapse
Could you please help me with a link to that mode?

Related

ICS[RC1] Issues

Exclamation ICS camera framerate issue?
I just recently installed the ICS[RC1] build on my captivate, I love it but I just noticed some quite serious issues and I am surprised to know that they haven't been mentioned yet, may be no one else had these but anyway here they are:
1. The camera frame-rate while recording a video is extremely slow compared to the rest of the ROMS which are not ICS based. I verified this a couple o times and it really is very slow, not only in 720p but also in 480p. Also, I cannot pause a video while recording it. I mean it can only be stopped and NOT paused. Now, I don't know if you can do this in the real ICS but i think it is quite an important feature which should be there.
2. The flash player doesn't work properly. In opera, dolphin, boat or any other browser while viewing in desktop mode. I can watch a video but I Cannot go full screen, the whole browser hangs and I have to restart it.
Someone please check if he/she is having these issues or not, I love everything about this ICS port but these things really bother me. Also, these issues were also present in the teamhacksung build[10]
While extremely stable, this build is still not a Full release. There are still Bugs to work out. Be patient.
http://forum.xda-developers.com/showpost.php?p=19680256&postcount=2
What does not work:
Camera (video recording)
Phone encryption
Click to expand...
Click to collapse
I'm not sure about your second point because I have not tried Flash yet.
same problem
i have the same problem with the laggy video recording with RC1 and those bugs mentioned (camera and encryption) were resolved in RC1 but something is still wrong with the camera and i don`t know what...
Glad to know that i am not the only one!

[Bug] Snapchat/third-party camera apps choppy recording

Purchased a new P9 Plus the other day and installed both Snapchat and Instagram. Went to take a video in Snapchat and as soon as I started recording the recorded frame-rate dropped to ~10fps making for a nice slideshow.
Also noticed this occurred in Instagram so it is not isolated to just the one app. I must also point out as soon as the recording started it seemed to zoom in slightly, unsure whether this has to do with the lens crop-factor or what.
Original camera app works just fine without any choppiness in recording.
This leads me to believe that it's something wrong with the firmware and makes me curious as to whether there is a solution out there (as I use Snapchat on a daily basis and this purchase was meant to be an upgrade, not a downgrade.)
Current version: VIE-L09C706B102
EMUI: 4.1
So using even more third party apps I am relatively confident it is instead just a Snapchat and Instagram related issue as other camera apps on the store don't seem to exhibit the same symptoms.
Submitted a bug report to Snapchat in an attempt to get it fixed. However I'm still convinced with a tweak somewhere in the Kernel and a rebuild I could flash a version that solves the issue. Anyone have ideas about where to look?
brynx said:
So using even more third party apps I am relatively confident it is instead just a Snapchat and Instagram related issue as other camera apps on the store don't seem to exhibit the same symptoms.
Submitted a bug report to Snapchat in an attempt to get it fixed. However I'm still convinced with a tweak somewhere in the Kernel and a rebuild I could flash a version that solves the issue. Anyone have ideas about where to look?
Click to expand...
Click to collapse
FWIW, I recorded a Snapchat video and it come out perfect. No choppiness at all.
Kaiya_FL said:
FWIW, I recorded a Snapchat video and it come out perfect. No choppiness at all.
Click to expand...
Click to collapse
What build number are you on?
brynx said:
What build number are you on?
Click to expand...
Click to collapse
AV-AL10C00B176
I also have a highspeed Class 10 microsd card that I use as the default storage. Not sure if that would make a difference.
Kaiya_FL said:
AV-AL10C00B176
I also have a highspeed Class 10 microsd card that I use as the default storage. Not sure if that would make a difference.
Click to expand...
Click to collapse
Ah right yea see you're on a much newer firmware version than I am (FYI I don't have a microsd in my device atm). I'm stuck with B102 here in NZ which is what I think the issue is. You wouldn't happen to know an easy method of debranding my device and potentially swapping to the international/EU version would you?
brynx said:
Ah right yea see you're on a much newer firmware version than I am (FYI I don't have a microsd in my device atm). I'm stuck with B102 here in NZ which is what I think the issue is. You wouldn't happen to know an easy method of debranding my device and potentially swapping to the international/EU version would you?
Click to expand...
Click to collapse
I just got my phone a few days ago so I haven't done much in the way of researching how to root, but I know you can root it.
brynx said:
Purchased a new P9 Plus the other day and installed both Snapchat and Instagram. Went to take a video in Snapchat and as soon as I started recording the recorded frame-rate dropped to ~10fps making for a nice slideshow.
Also noticed this occurred in Instagram so it is not isolated to just the one app. I must also point out as soon as the recording started it seemed to zoom in slightly, unsure whether this has to do with the lens crop-factor or what.
Original camera app works just fine without any choppiness in recording.
This leads me to believe that it's something wrong with the firmware and makes me curious as to whether there is a solution out there (as I use Snapchat on a daily basis and this purchase was meant to be an upgrade, not a downgrade.)
Current version: VIE-L09C706B102
EMUI: 4.1
Click to expand...
Click to collapse
U should post this on P9 Plus forum, this is for P9.
Had the same problem, updated FW to EVA-L09C432B166, has up to Android Snapchat standards ever since (still kinda slow, but you know, some devs just don't like Android).
Do you guys have the same where it zooms in upon recording as well? I'm guessing this is because of some resolution change, but it's way too zoomed for my taste.

[CM 14.1] Camcorder does only works the first time

Hello
This is the problem:
I had install CM14.1 on my MI5 . The camcorder only works in the first video recorded after reboot the device, the second video only shows the first frame still and the audio is playing normally. All the camera apps that I tried have the same problem.
I already installed the 12/17 zip of the official CM14.1 and the problem continues.
How can I fix this? Thanks for your help!!
NicolasMesaH said:
Hello
This is the problem:
I had install CM14.1 on my MI5 . The camcorder only works in the first video recorded after reboot the device, the second video only shows the first frame still and the audio is playing normally. All the camera apps that I tried have the same problem.
I already installed the 12/17 zip of the official CM14.1 and the problem continues.
How can I fix this? Thanks for your help!!
Click to expand...
Click to collapse
At the moment you can't fix it. Many people have reported same issue and I have it also. It just doesn't work yet. The recorded files are useless.
Also i have some "dark stripes" running on the screen, while recording video. That should also be common problem for now.
But as far as i understand, rom developers are known with the issue and working on it. Maybe it works in the next update?
It seems that cm14.1 build 20/12 has fixed the issue. According to my experience, you need to flash the latest version cm first. And then clear data of the "media storage". My camcorder works in this way.
In newest build 161222 video recording seems to work better. I can watch videos that I've recorded.
But the problem with "dark stripes" or "dark waves" exist. Anyone else having this problem? When using stock camera and recording video, dark waves start running on the screen. Footej camera works better.

ROMs with almost no bugs

Is there any non OOS based ROM with a perfectly working fingerprint scanner and primary camera. Something that's really stable?
Everything you find in this forum is perfectly stable, maybe with the exception of MIUI.
Oneplus limited custom ROMs by not releasing sources that would make slow motion video, HDR and the "HQ" mode work. This means these are broken on all non OOS based ROMs.
The fingerprint scanner will also get a bit slower, but it's still gonna beat an iPhone.
ast00 said:
Everything you find in this forum is perfectly stable, maybe with the exception of MIUI.
Oneplus limited custom ROMs by not releasing sources that would make slow motion video, HDR and the "HQ" mode work. This means these are broken on all non OOS based ROMs.
The fingerprint scanner will also get a bit slower, but it's still gonna beat an iPhone.
Click to expand...
Click to collapse
Would you recommend the jump from oxygen OS at the expense of, what you state to be, worse low light performance, removal of features like slow motion videos and HDR, and the slowing of the fingerprint sensor... I suppose it depends if you use the camera then and enjoy the speed of your phone unlock?
ast00 said:
Everything you find in this forum is perfectly stable, maybe with the exception of MIUI.
Oneplus limited custom ROMs by not releasing sources that would make slow motion video, HDR and the "HQ" mode work. This means these are broken on all non OOS based ROMs.
The fingerprint scanner will also get a bit slower, but it's still gonna beat an iPhone.
Click to expand...
Click to collapse
This is totally wrong. MIUI Xs is the only non OOS rom where the camera works perfectly including auto-HDR, Slow Motion and HQ as it is based on H2Os. I am using this build and it even has ota support for miui weekly. Don't flash any other builds like wu or ruy09 etc. Use this build : https://mega.nz/#!H5xEEARQ!jIFx7bad4wBN3s1xXmEd6-8EQGQETMD9_EWsjYWMWSM
srharshajava said:
This is totally wrong. MIUI Xs is the only non OOS rom where the camera works perfectly including auto-HDR, Slow Motion and HQ as it is based on H2Os. I am using this build and it even has ota support for miui weekly. Don't flash any other builds like wu or ruy09 etc. Use this build : https://mega.nz/#!H5xEEARQ!jIFx7bad4wBN3s1xXmEd6-8EQGQETMD9_EWsjYWMWSM
Click to expand...
Click to collapse
Aside from the fact that MIUI doesn't boot on my device, it should be pretty stable. I seriously couldn't care less about the camera as long as it screws my phone up.
I like MIUI. Believe me, I tried. I downloaded every single version I could find, flashed all of them, none of them booted. Flashed fine, but then black screen, white notification LED, computer recognized the phone as Qualcomm debug mode. Yeah...
Works for some, not for me. And I'm not alone with this.
ast00 said:
Aside from the fact that MIUI doesn't boot on my device, it should be pretty stable. I seriously couldn't care less about the camera as long as it screws my phone up.
I like MIUI. Believe me, I tried. I downloaded every single version I could find, flashed all of them, none of them booted. Flashed fine, but then black screen, white notification LED, computer recognized the phone as Qualcomm debug mode. Yeah...
Works for some, not for me. And I'm not alone with this.
Click to expand...
Click to collapse
Try this Version. Believe me .... DO a clean flash --> Wipe everything including internal memory and flash from adb sideload.
Make sure your file system is F2FS and not EXT4. Update to latest nougat OOS and then flash as said above !!
If u want I can show my miui by uploading a video to youtube !!
sriharshasv said:
Is there any non OOS based ROM with a perfectly working fingerprint scanner and primary camera. Something that's really stable?
Click to expand...
Click to collapse
Since we use 7.1.1 blobs from openbeta3 on this unofficial op3t optimized lineage build most camera issue are gone - OnePlusCamera from openbeta3 is included additionally.
Fingerprint sensor was never an issue on these builds.
nvertigo67 said:
Since we use 7.1.1 blobs from openbeta3 on this unofficial op3t optimized lineage build most camera issue are gone - OnePlusCamera from openbeta3 is included additionally.
Fingerprint sensor was never an issue on these builds.
Click to expand...
Click to collapse
How did you manage to fix the fingerprint sensor issue? Every other LOS ROM has this issue.....:good:
nvertigo67 said:
Since we use 7.1.1 blobs from openbeta3 on this unofficial op3t optimized lineage build most camera issue are gone - OnePlusCamera from openbeta3 is included additionally.
Fingerprint sensor was never an issue on these builds.
Click to expand...
Click to collapse
Sounds strange. Is HDR working? Because I couldn't get it to work even on OOS based ROMs.
ram4ufriends said:
How did you manage to fix the fingerprint sensor issue? Every other LOS ROM has this issue.....:good:
Click to expand...
Click to collapse
Honestly: I don't know. To my own surprise it was just working. The only remaining issue: if you want to add a fp, you need to wait for some seconds before starting to register new fp; otherwise the fps is working as home button.
---------- Post added at 09:51 ---------- Previous post was at 09:45 ----------
ast00 said:
Sounds strange. Is HDR working? Because I couldn't get it to work even on OOS based ROMs.
Click to expand...
Click to collapse
HDR on back cam is working - no HDR on front cam. What's still missing is raw.
I'm no photographer and I lack a good judgment for stills. I suggest you take a nandroid and check yourself if the rom (especially the cam) matches your demands.
nvertigo67 said:
HDR on back cam is working - no HDR on front cam. What's still missing is raw.
I'm no photographer and I lack a good judgment for stills. I suggest you take a nandroid and check yourself if the rom (especially the cam) matches your demands.
Click to expand...
Click to collapse
I tried, but just like on OOS based ROMs, I cannot tell the difference between HDR being on or off. That's despite me giving it a challenging lighting situation.
With my Nexus 5, HDR photos had no EXIF info. At least no things such as ISO, exposure time. With the OP3T, I have full EXIF, which shouldn't be possible, because the whole point of HDR is that I don't have a single ISO value and a single exposure time value.
Due to the EXIF situation and the fact that I cannot tell a difference between pictures with HDR on and off, I concluded that it is not working. Am I the only one with this problem?
Can someone upload pictures taken back to back, where one was taken with HDR on and the other with HDR off?
ast00 said:
I tried, but just like on OOS based ROMs, I cannot tell the difference between HDR being on or off. That's despite me giving it a challenging lighting situation.
With my Nexus 5, HDR photos had no EXIF info. At least no things such as ISO, exposure time. With the OP3T, I have full EXIF, which shouldn't be possible, because the whole point of HDR is that I don't have a single ISO value and a single exposure time value.
Due to the EXIF situation and the fact that I cannot tell a difference between pictures with HDR on and off, I concluded that it is not working. Am I the only one with this problem?
Can someone upload pictures taken back to back, where one was taken with HDR on and the other with HDR off?
Click to expand...
Click to collapse
https://forum.xda-developers.com/showpost.php?p=71444775&postcount=831
srharshajava said:
This is totally wrong. MIUI Xs is the only non OOS rom where the camera works perfectly including auto-HDR, Slow Motion and HQ as it is based on H2Os. I am using this build and it even has ota support for miui weekly. Don't flash any other builds like wu or ruy09 etc. Use this build : https://mega.nz/#!H5xEEARQ!jIFx7bad4wBN3s1xXmEd6-8EQGQETMD9_EWsjYWMWSM
Click to expand...
Click to collapse
how's the battery life vs oos? and do you have V4a flashed and working?
nvertigo67 said:
Honestly: I don't know. To my own surprise it was just working. The only remaining issue: if you want to add a fp, you need to wait for some seconds before starting to register new fp; otherwise the fps is working as home button.
Click to expand...
Click to collapse
There's a work around for this. Use on screen nav bar. And then register all your fingerprints. Turn it off afterwards if you don't want.
sriharshasv said:
There's a work around for this. Use on screen nav bar. And then register all your fingerprints. Turn it off afterwards if you don't want.
Click to expand...
Click to collapse
I think waiting some seconds is the better (aka faster) workaround: changing to onscreen nav bar and reverting back takes about 10ms. Waiting for 5 s takes 5 s... Just a matter of peesonal taste. Work around the workaround...

Best Nougat Rom by daniel_hk with all the fixes for Lenovo K3 Note

Alright guys, I spent a whole night researching and reading all the comments and discussions in a lot of threads related to Lenovo K3 Note and I just registered myself. Now, I want to install a custom rom and I found that the roms build by daniel_hk are the most reliable. But the thing is I'm not sure which one to install. LineageOS or SlimRoms or CarbonROM?
Please let me know which one is the best regarding Battery Back up, Ram and least lag ?
Also please post some significant Screen Shots of each roms Home, Menu, Settings, Notification Bar, etc.
So that I can see which one looks better for my taste.
And lastly please post all the fixes available and the best karnel.
I'm sure everyone in the K3 Note community will be helped through this thread.
Also I'm a total noob in this department so please ignore any of my idiocy as I don't know everything.
Thank you very much.
As far as I'm concerned, there are no stable Android 7.1 ROMs for this device yet. They all suffer from a serious flaw in one way or another - either video recording not working properly, video playback not working properly, poor battery life, misconfigured buttons or just random glitches and bugs that shouldn't happen, even after flashing fixes. I tried both Carbon ROM and LineageOS but I had to return to stock. Then again, the Stock ROM has poor memory management so it lags a lot. It's a shame, I've probably tried around 15 ROMs and the only one that was moderately stable was AOSP Vibe 6.0 which was a remixed china dev ROM but that has problems with internal storage glitches which causes all the userdata to be moved to another folder randomly (don't ask me why this happens, I really don't know but it is frustrating and happened twice, had to move all my files over again).
If you know of a fully stable AOSP ROM, even if it is 6.0, I'd be very keen to try it.
stephendt0 said:
As far as I'm concerned, there are no stable Android 7.1 ROMs for this device yet. They all suffer from a serious flaw in one way or another - either video recording not working properly, video playback not working properly, poor battery life, misconfigured buttons or just random glitches and bugs that shouldn't happen, even after flashing fixes. I tried both Carbon ROM and LineageOS but I had to return to stock. Then again, the Stock ROM has poor memory management so it lags a lot. It's a shame, I've probably tried around 15 ROMs and the only one that was moderately stable was AOSP Vibe 6.0 which was a remixed china dev ROM but that has problems with internal storage glitches which causes all the userdata to be moved to another folder randomly (don't ask me why this happens, I really don't know but it is frustrating and happened twice, had to move all my files over again).
If you know of a fully stable AOSP ROM, even if it is 6.0, I'd be very keen to try it.
Click to expand...
Click to collapse
Thanks for the helpful information, but I know k3 note is yet to receive a fully stable custom rom. Knowing that I still want to install a custom rom by daniel_hk cause firstly the stock rom is very laggy and I cannot work with it and to my knowledge those three roms has received almost all the necessary and essential fixes already. for example the YouTube zoom thingy and the snapchat thingy got fixed I heard and many others. I think I can live with minor bugs like gps navigation not being able to be correct and **** like that. That's why I'm asking which one should I go with between these three.
Fair enough, but the ROMs from daniel_hk, whilst good, are definitely still in beta. YouTube zoom isn't fully fixed even if you flash the patch. If you go from 1080p to 720p, or 720p to 480p, you will get a zoom bug. 1080p videos recorded on the device do not play back in the gallery app or MX player, and the flashlight turns off by itself if you turn the screen off. Otherwise performance is good.
Edit: Carbon ROM is the only one with the latest fixes so I'd go for that.
stephendt0 said:
Fair enough, but the ROMs from daniel_hk, whilst good, are definitely still in beta. YouTube zoom isn't fully fixed even if you flash the patch. If you go from 1080p to 720p, or 720p to 480p, you will get a zoom bug. 1080p videos recorded on the device do not play back in the gallery app or MX player, and the flashlight turns off by itself if you turn the screen off. Otherwise performance is good.
Edit: Carbon ROM is the only one with the latest fixes so I'd go for that.
Click to expand...
Click to collapse
So does Carbon Rom gives the best battery back up and uses the least Ram ?
chococheesecake said:
So does Carbon Rom gives the best battery back up and uses the least Ram ?
Click to expand...
Click to collapse
Probably not, but it's still pretty good
use latest AOSP STABLE2 AKA MADos........ this is by far the most stable NG rom
btw,daniel has built latest lineage...with hdr fixed...which makes everything fixed......as daniel fixd the hdr..... now....mugik04 will build Latest RR with fix.......wait for that rom.....
Cpt.mactavish said:
use latest AOSP STABLE2 AKA MADos........ this is by far the most stable NG rom
btw,daniel has built latest lineage...with hdr fixed...which makes everything fixed......as daniel fixd the hdr..... now....mugik04 will build Latest RR with fix.......wait for that rom.....
Click to expand...
Click to collapse
In the previous build of lineage, the hotspot issue still has not fixed. I've to configure hotspot fresh everytime if I want to connect it to my PC or other device otherwise it just shows connecting and never connects. Is there any specific fix for that?
svs36 said:
In the previous build of lineage, the hotspot issue still has not fixed. I've to configure hotspot fresh everytime if I want to connect it to my PC or other device otherwise it just shows connecting and never connects. Is there any specific fix for that?
Click to expand...
Click to collapse
Not at the moment. And there are still issues with video playback, flashlight and camera video focus.
Lineage OS 14.1 is the one I've been happiest with. There are niggles and glitches, with battery being the biggest. On the whole I accept it's still work in progress. Stick to stock if you need stability.
Sent from my K3Note using XDA-Developers Legacy app
It depends on what you want, no custom nougat ROM has it all....
Having tested it all, I use Resurrection Remix 5.8.2 with March 5 security update.
Battery life is about 30 - 45 minutes less than Daniel's Rom but the smoothes of the performance is better.
#1 It has super fast charging (2180Mah)
#2 GPS locks in few seconds.
#3 Hotspot works once you on it off it and on it again.
#4 YouTube works perfectly
#5 Video recording does not crash at all, with or without flashlight. Footej camera works perfectly which is a plus for me, whatsapp, Facebook, Instagram, periscope works well with the camera.
#6 it works perfectly with three different custom kernels I've tried on it. (I currently use the latest Daniel_hk kernel with voltage tuning & OC)
It serves me well and since I have 2 spare batteries I don't bother however, tweaking the kernel to powersave gives me more juice.
So, it depends on what is a deal breaker for you.
I've used 2 AOSP Nougat that are very good but since all AOSP Nougat Audio recording level is low, which is a deal breaker for me, I switched to LineageOS before hitting RR Nougat.
FYI Footej Camera only works because it records in 720p by default. 1080p recording is the problem.
By the way - I got fed up with bugs so I created my own debloated VibeUI ROW ROM with a nexus feel - so far it seems to work well and no signs of lag so far. I think the lag isn't caused by the core ROM, but the add-ons that Lenovo insist on adding. If there are no major issues I'll upload it by the end of the week
Bolumstar said:
It depends on what you want, no custom nougat ROM has it all....
Having tested it all, I use Resurrection Remix 5.8.2 with March 5 security update.
Battery life is about 30 - 45 minutes less than Daniel's Rom but the smoothes of the performance is better.
#1 It has super fast charging (2180Mah)
#2 GPS locks in few seconds.
#3 Hotspot works once you on it off it and on it again.
#4 YouTube works perfectly
#5 Video recording does not crash at all, with or without flashlight. Footej camera works perfectly which is a plus for me, whatsapp, Facebook, Instagram, periscope works well with the camera.
#6 it works perfectly with three different custom kernels I've tried on it. (I currently use the latest Daniel_hk kernel with voltage tuning & OC)
It serves me well and since I have 2 spare batteries I don't bother however, tweaking the kernel to powersave gives me more juice.
So, it depends on what is a deal breaker for you.
I've used 2 AOSP Nougat that are very good but since all AOSP Nougat Audio recording level is low, which is a deal breaker for me, I switched to LineageOS before hitting RR Nougat.
Click to expand...
Click to collapse
So if you needed to compare between LineageOS and RR Nougat, which one would be better in terms of smooth user experience and which one do you think has the lowest issues?
Also I do really need the most battery backup I can get.
stephendt0 said:
By the way - I got fed up with bugs so I created my own debloated VibeUI ROW ROM with a nexus feel - so far it seems to work well and no signs of lag so far. I think the lag isn't caused by the core ROM, but the add-ons that Lenovo insist on adding. If there are no major issues I'll upload it by the end of the week
Click to expand...
Click to collapse
Please do, I'll check it out.
stephendt0 said:
FYI Footej Camera only works because it records in 720p by default. 1080p recording is the problem.
Click to expand...
Click to collapse
Using premium footej camera on resurrection remix 5.8.2 March 5th security update Rom and it hasn't crashed over two weeks....
Bolumstar said:
Using premium footej camera on resurrection remix 5.8.2 March 5th security update Rom and it hasn't crashed over two weeks....
Click to expand...
Click to collapse
It plays back 1080p recorded videos ok?
stephendt0 said:
It plays back 1080p recorded videos ok?
Click to expand...
Click to collapse
Yeah, it does, smoothly without any glitch.
---------- Post added at 03:17 PM ---------- Previous post was at 03:06 PM ----------
chococheesecake said:
So if you needed to compare between LineageOS and RR Nougat, which one would be better in terms of smooth user experience and which one do you think has the lowest issues?
Also I do really need the most battery backup I can get.
Click to expand...
Click to collapse
Both are the same core but RR has a little more customization and faster charging.
LineageOS by Daniel has the best battery backup time in CM based Roms. I've achieved 5hrs SOT with one AOSP nougat. It has low audio recording that's why I didn't continue.
You can achieve faster charging on Daniel's Rom with ultimate or Vince kernel. But it comes with dt2w and takes extra juice from the battery.
You should try flashing different Rom and check it out for yourself
Cpt.mactavish said:
use latest AOSP STABLE2 AKA MADos........ this is by far the most stable NG rom
btw,daniel has built latest lineage...with hdr fixed...which makes everything fixed......as daniel fixd the hdr..... now....mugik04 will build Latest RR with fix.......wait for that rom.....
Click to expand...
Click to collapse
Hdr has been fixed but with another hotspot bug replacing it
Did you face hotspot bug in RR 5.8.2?? Mugiks ?? Can you confirm? :/

Categories

Resources