Some observations from CM12.1 nightlies testing - G4 Q&A, Help & Troubleshooting

I don't have access yet to the development section, so I am posting here a few bugs/observations/impressions from testing Nov 6 nightly with several camera apps:
-FV5. Raw capture works although raw images have unrealistic colors; JPEG images are good but it is impossible to shoot videos as the screen goes black and nothing happens. Several force closes and overall buggy
-CameraNext. Raw capture does not work, images are fine and it is impossible to shoot videos. Several force closes
-CameraNexMod. Same as previous one
-Cyanogen camera. Everything works but raw capture is not a feature of this app (by the way, GalleryNext does not work; QuickPic does)
More in general, I have noticed that FaceUnlock doesn't work. I come from a 1+1 with CM12.1 and performance looks similar; pictures are much better. My impression is that the stock rom, although awful, is smoother than this nightly.
Is it possible to fix video shooting?
Great job overall

antastik said:
I don't have access yet to the development section, so I am posting here a few bugs/observations/impressions from testing Nov 6 nightly with several camera apps:
-FV5. Raw capture works although raw images have unrealistic colors; JPEG images are good but it is impossible to shoot videos as the screen goes black and nothing happens. Several force closes and overall buggy
-CameraNext. Raw capture does not work, images are fine and it is impossible to shoot videos. Several force closes
-CameraNexMod. Same as previous one
-Cyanogen camera. Everything works but raw capture is not a feature of this app (by the way, GalleryNext does not work; QuickPic does)
More in general, I have noticed that FaceUnlock doesn't work. I come from a 1+1 with CM12.1 and performance looks similar; pictures are much better. My impression is that the stock rom, although awful, is smoother than this nightly.
Is it possible to fix video shooting?
Great job overall
Click to expand...
Click to collapse
I may also add that, on Nov 7 nightly, SD card is all of a sudden visible to the phone but not visible to computer. Tried SD scan but didn't solve.....

Related

HOW TO: FIX the G5 Plus Camera (mods, tools, guides)

UPDATE: Used hide tags to organize this post better and make information easier to find.
Alright, so you've got a shiny new Moto G5 plus, which supposedly has a similar Sony imx sensor as the one found on flagships like the Galaxy S7 and Pixel2. Yet, you are somehow disappointed by the camera's quality.
YOU ARE NOT ALONE!
Turns out the camera sensor on this thing is actually pretty darned good, and the f/1.7 lens is no slouch, however it is being held back by poorly designed software from Moto/Lenovo.
Before I got into the solutions, let me specifically point out the problems I found with the camera so we're on the same page (click to reveal content, or just skip the fixes below):
1) Overzealous Sharpening and aggressive Noise Reduction are the biggest culprits. It almost looks like a bad filter is being applied to your images, turning fine details into mush and contrasty lines like text into something bizarre and artificial looking. The camera is doing this as part of the internal capture process, so this happens no matter what application it is taken in.
2) Highlights clipping earlier than it should. I'd say this might be a function of the camera's sensor more than the hardware, but analyzing RAW data from the sensor (more on that later) in my admittedly unscientific half-hazard naked eye, I'd go out on a limb and say it seems like we're not being shown all the DR the camera is able to see. To the layman: this means brights turn completely white effectively overexposing parts of the image that should otherwise still look OK.
3) The preview/viewfinder mode is even worse at #1 than the captured image is. That is, the preview mode (the video feed you see before you capture the full resolution image) is still applying the sharpening and NR at the same level as the captured image, however since the resolution is lower for the preview, it looks more exaggerated and ugly. This means two things: A) Its hard to tell what the image you take will look like, as the preview is ugly (and you have to hope the final will look better), and B) some apps use the preview feed as their capture method. For example, snapchat and augmented reality apps like Pokemon Go. It just looks terrible.
The good news is that there is a lot that can be done to improve and fix the camera.
The bad news is that almost all of it requires modifying system files. That means those with locked bootloaders (Amazon ad users or those who are afraid of voiding their warranties) might be out of luck.
You don't necessarily need root access, although some of this can be more easily performed with root. I needed to unlock my bootloader and performed most of this within TWRP, but chose to keep my phone otherwise unrooted. I'm going to split this into sections, fixing and improving.
A) FIXING THE IMAGE PROCESSING ISSUES
If you want to remove/circumvent the aggressive sharpening and NR issues (so that apps like snapchat or other camera applications don't look over-processed, including the stock Moto cam), try the following:
1) Chromatix mod. Shout out to @defcomg for finding and adjusting the values that control sharpening and NR in the system libs. See thread here:
https://forum.xda-developers.com/g5-plus/themes/modcamera-aggressive-sharpening-noise-t3604458
There are two sets of files to replace in your system. Chromatix and LIBMM. NOTE: I don't recommend the LIBMM / binning part. Binning is combining pixels together into an averaged single pixel value, effectively reducing resolution to combat noise on the sensor. In other words, instead of having a large possibly noisy image, you get a smaller less noisy picture. But you can always choose to resize the image in post after you take it with the same resulting effect, so I don't see why this would be desirable to do. I recommend just applying the chromatix mod to remove the sharpening and NR. If you're comfortable using TWRP, there's actually a flashable zip in post #9, which is what I personally did (again, remember I'm not rooted, so I needed to flash/overwrite/etc within TWRP).
After applying this mod, even the stock camera app looks better, and apps that use the live preview (Snapchat, Pokemons AR view, etc) don't have the shadow ghosting from excessive sharpening anymore either. You might want to apply some sharpening and NR in post yourself if the image requires it, but thats always something you can choose but at least you have control over it and even without doing that it looks far better and more natural than stock to me.
2) Enable camera2 API. This doesn't have a direct effect on quality, but will allow other apps to have more direct access to the camera. If you want to improve beyond the results of #1 above, you'll need this.
The stock rom, surprisingly, has Camera2 API included, however it is disabled by the build.prop file. Again, no idea why Moto/Lenovo chose to do this, but the good news is you can enable it again easily. To do this, you need to add the following line to the build.prop
persist.camera.HAL3.enabled=1
Or if rooted, via terminal / shell:
su persist.camera.HAL3.enabled 1
Once this is enabled, you can use apps such as the modified freedcam to shoot RAW, as found here: https://forum.xda-developers.com/g5-plus/how-to/how-to-enable-camera2-shoot-raw-root-t3582392
I found RAW from this app particularly difficult to work with, so I'm keeping it for experimentation purposes but for practical real-world usage, I'd recommend the next item below.
B) IMPROVING YOUR PHOTOS (or, how to install Google Camera!)
Section A was all about how to avoid the crummy filters that get automatically applied to the camera. But your device is capable of even BETTER photos by using Google's magic HDR+ algorithm (the special sauce that makes the Pixel phones so awesome). Here's how to do that:
1) If you haven't already enabled the Camera2 API, you need to do that first (info in section A above).
2) Get a working version of Google Camera with HDR+ for your phone. The last available 32-bit version with HDR+ is Gcam 4.2, so if you're on the stock ROM like I am, you're stuck with only the 32-bit versions (all the new versions with the bells and whistles are 64-bit only). The image quality is remarkably better, both in sharpness and dynamic range in almost any light. I have to admit, I'm in love with the images from this, and have even printed some for my wall.
You can get the APK ported from the Nexus 5x version here:
https://forum.xda-developers.com/showpost.php?p=74081041&postcount=3
UPDATE: New version from Savitar on post #44!
https://forum.xda-developers.com/showpost.php?p=75483974&postcount=44
Problem is, our cameras use a different focus system than phones like the Nexus and Pixel. So, in photo mode, it doesn't really work correctly. Switching over to video mode, however, DOES work (likely using contrast detection focus, which is slower but more universal, especially for video focus). So the workaround is to swipe over to video mode, focus, swipe back to photos and press-and-hold to lock focus. It's annoying, but HDR+ is that good that I still try to work with it much of the time.
For times that it would be frustrating or not necessary, I'll just resort to the stock camera app or Footej camera, since the chromatix mod makes them mostly usable now. Just not ZOMG AMAZING like the Google HDR+ does.
OPTIONAL #3) Install a 64-bit custom Rom and use the latest Google Camera HDR+ app floating around (v4.4). The recent versions B-S-G released based on the Pixel camera has options to change camera modes in settings, some combination of which supposedly focus properly. You will likely get a more stable camera app experience with this as it requires less modification to work, but you'll have to be committed enough to go off stock.
Check out the app and suggested settings to try here:
https://forum.xda-developers.com/showpost.php?p=74999182&postcount=19
Thanks @shanks125 for the info!
Update 1/3/18: I just heard there is a port of the new portrait mode feature from the Pixel2 that is sort of working on 64-bit roms, but I think some modifications will need to be made to avoid focus drift like previous modded gcam versions.
There is also a 32-bit version of the new v4.4 that @Aby lad came up with in this thread:
https://forum.xda-developers.com/android/apps-games/google-camera-4-4-arm-device-t3666090
In order to make it more compatible with other devices, it looks like he has disabled the Hexagon DSP, which I think is what makes HDR+ work, so while we can now change settings and focus, HDR+ isn't working. The app still has some Google goodies like Sphere and Blur mode, but without HDR+ the real benefit of Google camera is lost anyway. Might as well use stock with chromatix mod at that point.
Hope some of you find this helpful/useful!
UPDATE 12/28/17: New GCam with 6P features on post #14.
There actually may be some alternate versions of the gcam apk with benefits the one originally linked above doesn't have. I will try to update when if/when I find them.
Dishe said:
There actually may be some alternate versions of the gcam apk with benefits the one originally linked above doesn't have. I will try to update when if/when I find them.
Click to expand...
Click to collapse
That would be useful!
So if I apply the chromatic mode, do I still have to enable the Camera2 API?
It's my bad. I would like to know if there is a way to disable Camera2 api. I am on Linage 14.1 and I edited my prop.build (yeah, I know). I switched back to the original line of code, but camera app still crashing. How to revert without reflashing the rom? Thanks.
edit. reflashed.
iBART said:
It's my bad. I would like to know if there is a way to disable Camera2 api. I am on Linage 14.1 and I edited my prop.build (yeah, I know). I switched back to the original line of code, but camera app still crashing. How to revert without reflashing the rom? Thanks.
edit. reflashed.
Click to expand...
Click to collapse
Did you try clearing data+cache for the camera app?
iamsonal said:
So if I apply the chromatic mode, do I still have to enable the Camera2 API?
Click to expand...
Click to collapse
Nope, but it doesn't hurt to so why not? Some apps will have more options in camera2 if enabled.
iBART said:
It's my bad. I would like to know if there is a way to disable Camera2 api. I am on Linage 14.1 and I edited my prop.build (yeah, I know). I switched back to the original line of code, but camera app still crashing. How to revert without reflashing the rom? Thanks.
edit. reflashed.
Click to expand...
Click to collapse
There is another way to enable camera2 api if you're using a custom ROM. You need to flash a magisk module.
https://forum.xda-developers.com/showpost.php?p=74081041&postcount=3
Which Google camera works in a complete stock g5? I keep getting a praising error with every one I try.
eemgee said:
Which Google camera works in a complete stock g5? I keep getting a praising error with every one I try.
Click to expand...
Click to collapse
Parsing error means you are probably trying to use a 64-bit or one made for a different version of Android (7.1 instead of 7.0). The one linked above will work.
However, all recent versions of Google's Camera require the camera2 api to work. That's one of the primary reasons to enable the Camera2 api in my opinion. It comes in the stock rom, but it is disabled for some inexplicable reason (G5S model has it enabled, so some people are hoping that we'll get it enabled with an update or at least when Oreo rolls around). The good news is that it only takes one line of text in the build.prop file to enable it on the G5+. However, the bad news is that build.prop is part of the protected system partition, so editing it requires root-level file access. Doesn't seem to be any way to do that without unlocking the bootloader, so either way you won't be able to do it on a 100% stock g5+ as things are right now.
Thanks i managed to get 2.7 working.
I will unlock the bootloader at some point in the next few weeks....
There is also a Magisk module in post #54 on that Chromatix thread. Really helpful!
Hi, so in search for better images from my g5+ camera I stumbled upon this place and rooted my phone to add the chromatix mods and edit the build.prop file .
I downloaded the google camera port v4.2 for the hdr+ but have been unable to install it as I get the error that package may be corrupted.
So could someone please link me to one which is good or upload it.
And BIG thanks to this community.
New gcam from savitar
UPDATE: Better gcam version from Savitar/Defcomg
http://s000.tinyupload.com/?file_id=00826724446841525700
Features:
Burst Mode (hold shutter button)
Focus doesn't drift when switching from video mode (this is a huge fix IMO- old app would drift after setting focus in video mode).
Selfie cam now has HDR as well (with caveats)
RAW image capture with each photo!
Instructions for use are largely the same as the old app, but it works better / more reliably now:
WHEN USING APP FOR THE FIRST TIME, GO INTO SETTINGS AND CHANGE VIDEO TO 4K. This will prevent FCs.
To take a picture:
1) Swipe left to switch to video mode, tap to focus
2) Once focus is achieved, swipe right to return to photo mode. (Focus should not drift in this version)
3) Tap the area again in photo mode, and hit the shutter button.
NOTES:
It appears that you no longer need to press-and-hold to lock focus in photo mode before shooting. I believe this is because the focus system doesn't adjust anymore in photo mode (I'm guessing Savitar/Defcomg removed it to combat that focus drifting problem). It is already locked at wherever you put it in video mode. You DO however need to still tap the screen as if you are focusing. I think this is because the camera needs to think it is focusing, but it is anyway helpful to tap somewhere for metering / exposure reading purposes. Skipping the press-and-hold to lock focus makes it a lot more manageable.
This version of the app is setup to shoot RAW+Jpeg, so you will find your camera roll will have both a jpeg and DNG file of the shot. Be aware that the RAW DNG files are multiple times larger than the jpeg, so you may want to keep an eye on storage if you shoot a lot of them. They're really useful if you want to adjust WB and exposure afterwards, quality is astoundingly good.
Selfie Mode was broken in HDR+ on earlier builds because for some reason the front camera on our phone doesn't return an ISO value to the app (says iso is zero). The HDR+ algorithm would fail. Savitar/defcomg fixed it by setting it always return a value (he picked 100, otherwise it would overexpose in daylight). The catch is that in lower lighting, the selfie HDR+ comes out darker than expected. Thankfully you can take the RAW file and adjust the exposure in post if needed (snapseed, Lightroom mobile, etc). But there might be times it is just too dark to be useful. The difference when it works is big enough that I recommend it trying it at least once to compare.
ENJOY!
Big shout out to @defcomg for this and all his awesome mods!
Landscape gcam 6p
A modified version of the APK above is available which starts the camera off focused at infinity.
http://s000.tinyupload.com/?file_id=31694573387513766779
This was made for people who want to shoot landscapes and/or things far enough away that they don't want to deal with focusing (swipe to video mode, etc). See a beautiful sunset for example, open this app, tap the sky and hit the shutter. Its already focused in the right position.
Otherwise identical to previous post's apk. Can be installed side-by-side, as each app has its own ID.
can't use gcam because it crashes at first run
marcol87 said:
can't use gcam because it crashes at first run
Click to expand...
Click to collapse
Do u have camera2 API enabled?
Dishe said:
UPDATE: Better gcam version from Savitar/Defcomg
Click to expand...
Click to collapse
Thank you for sharing this.
Add this, BSG GCam MOD with working HDR+ and Touch to Focus for 64bit roms. Settings as per attachment! https://androidfilehost.com/?fid=889964283620770378
Dishe said:
Do u have camera2 API enabled?
Click to expand...
Click to collapse
yes, I added persist.camera.HAL3.enabled=1 to build.prop and rebooted
Dishe said:
persist.camera.HAL3.enabled=1or
Click to expand...
Click to collapse
ps: the string persist.camera.HAL3.enabled=1 is wrong in the OP

Camera Resolution Problem

Hi,
i have a huge problem with my camera. When my Mi5s arrived before one year the cam worked perfectly and the pictures were really nice. But somewhen the quality of the images went really low, so i tried different camera apps and settings, tried multiple different roms (Miui Dev, Global, etc.) but nothing helped.
The images looking like if the resolution is really low and are unsharp, especially in low light situation. The weired thing is that in the preview of the camera app the images are much sharper and more brilliant as after the photo is taken.
I am for now on the pixel experience rom (clean flash with everything wiped) and tried the stock cam, the ported google cam and the ported miui cam, but the images are all the same.
I have now clue who it can be that the images are that bad after processing in every app
Does anybody have an idea why this happens and how to solve this? i didnt find anywhere similar problems with this phone/cam.
Thanks
hitzkok said:
Hi,
i have a huge problem with my camera. When my Mi5s arrived before one year the cam worked perfectly and the pictures were really nice. But somewhen the quality of the images went really low, so i tried different camera apps and settings, tried multiple different roms (Miui Dev, Global, etc.) but nothing helped.
The images looking like if the resolution is really low and are unsharp, especially in low light situation. The weired thing is that in the preview of the camera app the images are much sharper and more brilliant as after the photo is taken.
I am for now on the pixel experience rom (clean flash with everything wiped) and tried the stock cam, the ported google cam and the ported miui cam, but the images are all the same.
I have now clue who it can be that the images are that bad after processing in every app
Does anybody have an idea why this happens and how to solve this? i didnt find anywhere similar problems with this phone/cam.
Thanks
Click to expand...
Click to collapse
Maybe you can try magisk module from tadi's libhack (this module is for oreo) And make sure your gcam setting set correctly.
Didnt help, but thank you!
It looks more like a too long shutter time if you ask me. Did you used the Mi5s specific port of GCam? Search here for "v2e", which will give you the latest one that worked great with my device: https://www.celsoazevedo.com/files/android/google-camera/
For settings I use:
Model Pixel 2 XL (some users have better results with Nexus 6P)
Config HDR Pixel 2017 ZSL
HDR+ Very high
Final JPG Qual 100% (although 95% should also be enough)
And enabled increased detail of HDR+ on front camera
The author suggests these settings himself:
https://www.celsoazevedo.com/files/android/google-camera/f/settings03/

Is there a way to fix dark video on modded gcams for Oreo roms?

Hello, i've been using arnova's modded gcams for a while, and noticed that video recording is extremelly dark, and sometimes get black screen flashes on it, not even close to photo's quality.
The only camera that seems to be doing an extremelly good job with videos is the oneplus modded one, but it lacks a lot of features.
Actually the image quality of the modded Gcam is shocking when enabling hwhdr on debugging and setting hdr to high, video doesn't stand a chance. As it doesn't happen only on one app, I believe it is a system or a camera2api configuration that the oneplus camera and the default camera ignores (I am running Pixel Experience, feb latest build, but it's a thing on every Oreo's ROM).
Is there anyone that knows about the topic any way or idea to debug it -be it from the camera source files or from the c2a settings-? It would be insane to have also the video ia for stabilization of the Gcam and maybe it can compare or be better than the OnePlus Camera.
Open to suggestions !
They is another problem with the modded gcam, when we select 60fps option camcorder the screen flickers while focusing and thats been recorded
There's nothing to do to check flickering, dark video and fix colours on preview? images looking a bit color-dead before obturation on some cameras, seems that only aplications that overrides those settings are working good. (modded gcams are dark and flickers on video, apps like instagram that doesnt obture gets a bit of lack of colours since preview doesnt do a bit of hwhdr to have an more accurate end result to obturation and also nicer looks on instagram photos). Seems to be a problem with the phone configuration since the camera can record well on other devices, and the op camera can record well on ours. Not like there are no ways around now, we can use both cameras and take the images with stock camera before uploading them but in long term it would be a nice improvement on social networks direct uploading, easier to take videos and photos on a single application (also to have gcam benefits as it is video stabilization). Sorry if I didn't explain myself properly, im not so good at english. Also, I didnt develop directly for android/camera but if someone with a bit of idea gives me the hand I can check out the settings. I don't have so much free time to learn now but as a developer with a couple of tips on the topic maybe I can find a way around to check those settings. Or if an experienced developer with time and will to do it I can help out maybe. I believe it's worth to give it a look

Best Camera App for A2 Lite - Camera2 API required

Google Camera (all versions) running Pie OS has been very hit and miss in the focus problem, and therefore until a developer or OTA update can fix this issue, it is not recommended for pictures that matter. It is inconsistent as to when these issues occur. This being the case, if you are plagued with the Pie update, your camera performance results will not always be good.
After extensive testing with many hundreds of comparative photos taken with many camera apps this is the simple final conclusion:
Note that all these (except the stock app) require Camera2 API. Instructions elsewhere on this site.
For outdoor photos in bright light: Winner Stock A2 Lite camera app with the following settings:
Picture Quality:High, Contrast:Low, Saturation:High, Sharpness:High. These settings tend to take faster photos than HDR with similar results.
Note that all the camera apps work about the same in overall picture quality and only minor emphasis on color variations. While the google Cameras had a better saturation and warmer tone, the HDR artifacts in the sky make the photos only usable at lower screen resolutions. That limits your ability to crop or enlarge to bigger sizes. The stock camera did not exhibit these with HDR on.
For Indoor and low light: Winner in every test was the Pixel 2 camera app (GoogleCamera-Pixel2Mod-Arnova8G2-V8.2.apk) with HDR off or on depending on light levels. It produced sharp photos with surprisingly good clarity. The stock app was normally muddy and gcam 6+ was too grainy. As a bonus, the portrait mode zooms in (like the gcam 6+, which makes people look less distorted) and there is a motion video option (not tested yet) and lens blur that works better than the 2 lens system of the stock app, but the photos become only 5mp. Like the GCam 6+, HDR for solid color areas (like sky) had the same pattern. Haven't played with all the developer settings yet.
For ultra low light: Winner is the Google Camera 6 (MGC_6.1.013_MiMAX2_V1b_A8.1+fix_Hexagon_failed+blFront.apk) using the night sight feature found under More > Night. The idiosyncrasies of spontaneous app closure when a second shot is desired is annoying, however the results from their algorithm of image stacking is very well done. It also works well to create the smooth water motion for water falls and cascades, but only in dim light.
The gcam 5 app (GCamera_Mod_v.5.1.23_R5Plus_fix_crash.apk), that interestingly the pixel 2 app is based on, did not win in any category.
So I now have 3 camera apps to choose from depending on the photo required. Download an icon app to distinguish the 3 easily. I would imagine these results would be similar on other phones as well.
A note on HDR. None of the phone camera apps do HDR the way it is intended. In normal photography, HDR lightens areas in shadows and darkens blown out bright areas for a more usable photo by combining under exposed, properly exposed and overexposed images that are stacked and aligned. In all the camera apps tested, it makes little difference to shadows and even made shadows darker in the gcam HDR modes. What it does when needed is take multiple underexposed images (each at a faster exposure or lower ISO) and combine to increase (not decrease) contrast for a more vivid (but often artificial) contrast look, while better saturating colors and less noise for hand held images in low light. To do a proper HDR, you need to bracket the exposure and combine in photo shop (PS). There are phone apps that allow exposure bracketing and create the HDR in PS if you really want to get that involved. HDR+ only uses HDR when needed and HDR+ Enhanced the HDR is always on. When no HDR icon is visible, HDR is the HDR+ on when needed (auto mode).
I am currently running pie, and random focus issues have been surfacing for all the gcams. I read a comment that may be an issue with pie vs oreo, although not certain. It seems like Android One users are Google Beta testers. Pies battery life is much worse and no way to see what apps are causing the drain. I suspect it will get fixed in an update. Not for this forum though, there are already many out there for this issue. Main camera is set to Nexus 6P and Front camera a Nexus 5. I read elsewhere that this was optimal, but did not test if the others made any difference. The Nexus phones DO NOT use the same camera (sensor & Lens) on either the Front or Back camera so I am uncertain how much difference the setting actually makes. Most of the other settings were left as installed, although I am still testing to see if any improve the quality. Please chime in if you find any improvements and I will test and update this post. There is always room for improvements.
I would really welcome a more stable google camera build without the focus, night sight and HDR pattern issues. If someone has a line to the developer of these modded apps, please let them know.
Hi, thanks for sharing this. Do you have any specific settings for any of these apps? (Besides HDR)
Which gcam do you use for front selfies? On r5plus mod i get dank front selfies in good lighting but struggles so much on low light so much grain, noise and distortion. Or do you have any specific settings? Thanks
RyanHardy said:
Hi, thanks for sharing this. Do you have any specific settings for any of these apps? (Besides HDR)
Click to expand...
Click to collapse
I will do some more experimentation and update the post when I finish. It is very time consuming for the developer settings do not have easy explanations as to what they do.
bon122728 said:
Which gcam do you use for front selfies? On r5plus mod i get dank front selfies in good lighting but struggles so much on low light so much grain, noise and distortion. Or do you have any specific settings? Thanks
Click to expand...
Click to collapse
Pixel 2 for selfies, but HDR must be off for the photo to record. BTW, the flash works, but not sure it is any better then ambient light. Main issue is the 5mp front camera is a bit outdated. Lipstick on a pig is still a pig.
thanks and keep up the good work!
i think test results need to be explained a bit more detailed. for ex. oreo or pie based? you know, it's reported a lot that pie has gcams' losing focus issues (mostly with flash, blurry photos)
and yes, HDR and saturation (or maybe more) settings sharing would be better...
Hi rob1,
there are 6 GoogleCamera-Pixel2Mod-Arnova8G2-V8.2.apk in this link https://www.celsoazevedo.com/files/android/google-camera/.
which apk is that?
N6PbsgfixPortrait-GoogleCamera-Pixel2Mod-Arnova8G2-V8.2.apk
bsgfixPortrait-GoogleCamera-Pixel2Mod-Arnova8G2-V8.2.apk
bsgfix-GoogleCamera-Pixel2Mod-Arnova8G2-V8.2.apk
MI8_V1_N6_GoogleCamera-Pixel2Mod-Arnova8G2-V8.2.apk
OP6_N6_GoogleCamera-Pixel2Mod-Arnova8G2-V8.2.apk
Arnova's v8.2: GoogleCamera-Pixel2Mod-Arnova8G2-V8.2.apk
thanks!
dyobetem said:
Hi rob1,
there are 6 GoogleCamera-Pixel2Mod-Arnova8G2-V8.2.apk in this link https://www.celsoazevedo.com/files/android/google-camera/.
which apk is that?
N6PbsgfixPortrait-GoogleCamera-Pixel2Mod-Arnova8G2-V8.2.apk
bsgfixPortrait-GoogleCamera-Pixel2Mod-Arnova8G2-V8.2.apk
bsgfix-GoogleCamera-Pixel2Mod-Arnova8G2-V8.2.apk
MI8_V1_N6_GoogleCamera-Pixel2Mod-Arnova8G2-V8.2.apk
OP6_N6_GoogleCamera-Pixel2Mod-Arnova8G2-V8.2.apk
Arnova's v8.2: GoogleCamera-Pixel2Mod-Arnova8G2-V8.2.apk
thanks!
Click to expand...
Click to collapse
Arnova's v8.2: GoogleCamera-Pixel2Mod-Arnova8G2-V8.2.apk (Arnova8G2, 2018-08-13, changelog)
Although I am not certain if it is the best. When visiting the rose parade floats, there were random times where focus was an issue. I will experiment further with other versions. Many of the apks that are not compatible will just not start up (black screen or return to home screen). It would be nice to find a more stable version.
I agree except for the stock camera For outdoor photos in bright light... textures are always "muddier" than gcam to me. It can have a more precise light sometimes but it's a price not worth to pay IMO. If someone doesn't want to be bothered I'd suggest to use only the google camera 6 in order to have at hand always the night mode, arnova is generally sharper but you need to fully zoom it to spot the difference... i noticed also that the night mode of camera 6 produces better results than arnova even in mid/low light scenes but not always and not for all the shots... smt i make two shots with arnova and camera 6 night mode and keep the best... pity that camera 6 doesn't allow to be started by double tapping on the power button though.
Are you running Pie or Oreo? Are you having intermittent focus issues with the gcams? Will night sight always allow a second night sight photo without restarting the camera app? Have you looked at a solid blue sky with HDR on any gcam, and is there a pattern there? Thank you.
BTW, all my tests I enlarged the photos to 100% pixel level and more in PS comparing many areas of the photo in unison.
rob.1 said:
Are you running Pie or Oreo? Are you having intermittent focus issues with the gcams? Will night sight always allow a second night sight photo without restarting the camera app? Have you looked at a solid blue sky with HDR on any gcam, and is there a pattern there? Thank you.
BTW, all my tests I enlarged the photos to 100% pixel level and more in PS comparing many areas of the photo in unison.
Click to expand...
Click to collapse
I'm running Pie, i do have some refocusing (but often it stops) but only in very low light condition. I didn't experience problems on second shots of night mode but smt it quits when i select night mode though. I do remember sometimes to see a pattern but only in night mode and in bright light I think. That was also a reason for not to use always the night mode btw... will do a shot on a deep blu sky when I'll see it but as far as I remember I didn't see this issue with arnova at least
I use one Gcam app called "Gcamera" is only in english and hdr front camera works..but is a older version of gcam and don't have a night mode photo etc, IMHO the best choice is for video on 60fps the xiaomi camera (in Pie update 60fps is enable) , for general video and photo gcam (a lot of optimization and hdr+) , and for selfies gcam with hdr off..waiting for it to work.
Andreagia1994 said:
I use one Gcam app called "Gcamera" is only in english and hdr front camera works..but is a older version of gcam and don't have a night mode photo etc, IMHO the best choice is for video on 60fps the xiaomi camera (in Pie update 60fps is enable) , for general video and photo gcam (a lot of optimization and hdr+) , and for selfies gcam with hdr off..waiting for it to work.
Click to expand...
Click to collapse
I didn't test it toroughly but I had the impression the video to be more stabilized and better detailed with arnova than the stock one... moreover I can use H265 to encode it...
btw i do have focusing problems with gcam and pie...
At the moment, the only solution for focus Gcam problem, Is change 4:3 to 16:9 and restart the app...
? i'm always in 16:9 but when I switch it doesn't work anyway...
biasiman said:
? i'm always in 16:9 but when I switch it doesn't work anyway...
Click to expand...
Click to collapse
Try to force close the app, after changing the size
it's just terrible any news for update gcam app to handle pie?
This developer's works great for me, no crashes on night sight so far and more customisable
https://www.celsoazevedo.com/files/android/google-camera/dev-backrider/
Just don't switch to the front camera and photobooth or you have to force stop the camera to be able to save images
Try the bulkin043 V8Y
---------- Post added at 11:01 AM ---------- Previous post was at 10:59 AM ----------
It is optimized for mi a2 but some said everything works except hdr on the front cam
---------- Post added at 11:03 AM ---------- Previous post was at 11:01 AM ----------
https://www.celsoazevedo.com/files/android/google-camera/dev-bulkin043/
---------- Post added at 11:03 AM ---------- Previous post was at 11:03 AM ----------
On ver 5r the development said he has fix the focus too.

Slow motion Camera -solved

I'm on lineageOS 18.1., and when I try to record any slow motion (120fps, 240fps) on GCam or open camera, the app crashes with a vague error (serious camera error,). I've tried updating the firmware. I've tried many different GCam builds and configuration profiles. I tried an unofficial 19.1 build. Nothing on lineageos seems to work for slow motion.
But I could record slow mo vids in April in open camera. I think the 4/24 update broke it. The changelog does show something about camera blobs was modified around that time https://github.com/LineageOS/android_device_oneplus_hotdogb/commits/lineage-18.1 ). Maybe I should try loading the firmware before the the feb 27 commit?
On crashing, the apps will leave behind files like " .pending_video_..." (i forget if that's open camera or gcam or both, but it doesn't seem important). . At 30 and 60fps it records/saves just fine. I've tried modifying resolution/quality/bitrate/etc. But I obviously haven't every combination. In some conditions I can get the GCam app to record "1/8x" videos which are actually just 30fps at regular speed. And sometimes I can get it to record at 30fps but then slowed down (So a 3 second video becomes 24 seconds, with 90 frames). I have a feeling those are errors within GCam that can easily be fixed once the crash is resolved. I think the crash is probably lower level.
So are there any gcam biulds that work with slow motion for the 7t? Or any custom roms that work better with the camera? Or is there a way I can download the lineage release from march, when it was working for me? If not, I guess I'll try to put the stock ROM on again, but that has its own difficulties.
EDIT: Well, I feel dumb. I thought I tried to the stock camera, but it must'vebeen a GCam rom I misread. The OOS camera works just fine, and that's good enough for me. Not sure how to delete a thread

Categories

Resources