[q] razr camera sucks..! - Motorola Droid RAZR

is it me or you guys also feeling that ..
RAZR camera sucks..!
is there any way to improve the camera quality ??

Tell that to motorola..... Unlocked bootloader would allow us to disable JPEG compression, and greatly improve the picture quality..

Is there any other way... ? To improve..?

On the RAZR MAXX (which is the OG RAZR with a bigger battery), you can adjust the compression on a rooted phone as follows:
Copy the file /system/etc/media_profiles.xml to /system/etc/media_profiles.xml-ORIG. Keep the copy because you'll need the original file when future system updates come along.
In the file /system/etc/media_profiles.xml:
About 30 lines from the top, change
Code:
<!ATTLIST ImageEncoding quality (90|80|70|60|50|40) #REQUIRED>
to
Code:
<!ATTLIST ImageEncoding quality (100|95|90|85|80|75|70|60|50|40) #REQUIRED>
also in the file, you need to look for a set of lines for each camera (front and rear) that looks like:
Code:
<ImageEncoding quality="95" />
<ImageEncoding quality="80" />
<ImageEncoding quality="70" />
<ImageDecoding memCap="20000000" />
To remove compression altogether, change the quality values to 100. Change the memCap to at least twice the number of megapixels in your device's camera. Larger will not improve the quality of your photos; smaller will force Android to pick a compression value that makes the image fit into that number of bytes.
After making the change, reboot your device.

will it also work with normal razr..?
have you tried this and how are the results...!
can u upload some pics taken from your device..?

With these changes, the compression is still high and quality is bad :\ I'm using Vignette! With stock camera the photos are around 0.9 and 1.5 MB, with Vignette yesterday I took a 4MB photo! So I think that the compression is lower in that app!

vikcie said:
will it also work with normal razr..?
have you tried this and how are the results...!
can u upload some pics taken from your device..?
Click to expand...
Click to collapse
I haven't done it, but it will work for OG RAZR. There's nothing different between the OG RAZR and OG RAZR MAXX other than battery size.
For me, I haven't found the pictures to be that bad, so I haven't mucked with these settings.
solefero69 said:
With these changes, the compression is still high and quality is bad :\ I'm using Vignette! With stock camera the photos are around 0.9 and 1.5 MB, with Vignette yesterday I took a 4MB photo! So I think that the compression is lower in that app!
Click to expand...
Click to collapse
These are just suggestions I found while searching and others have stated they have helped. As I stated above, I haven't implemented them because I'm happy enough with what I'm getting right now.

Related

[MOD] Enable fullscreen recording for Froyo

The following instructions will enable you to record videos in fullscreen ( 800x480 )
1. Pull the file from the phone
adb pull /system/etc/media_profiles.xml
2. Make a copy of "media_profiles.xml" ( in case you want to restore it )
3. edit "media_profiles.xml" and change the following line from
-----
<EncoderProfile quality="high" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="3000000"
width="720" <---- this value
height="480"
frameRate="24" />
-----
to
-----
<EncoderProfile quality="high" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="3000000"
width="800"
height="480"
frameRate="24" />
-----
4. Save the changes and reupload the file
adb push media_profiles.xml /system/etc/
5. Reboot the phone
adb shell reboot
** Upon request, I've uploaded the file "media_profiles.xml.zip". Unzip and skip to step 4.
Regards,
Kenny N
Thanks for the info. Could u maybe just upload an already edited version off the xml to maybe save some of us some time? Would appreciate it
agriff said:
Thanks for the info. Could u maybe just upload an already edited version off the xml to maybe save some of us some time? Would appreciate it
Click to expand...
Click to collapse
done and done - have fun
I guess they used the standard 3:2 aspect ratio that is used by DVD movies to keep things standardized. The 800x480 resolution should be better though if you are just watching the movies on your phone and computer.
Yes, they use the standard 3:2 aspect ratio. However, not sure about the others, I use the phone for playbacks
Is it possible to make the same with foto!!! to change resolution for widescreen fotos on Froyo, to display it on widescreen TV and laptop.....
Hey vnbuddy, I haven't tried to do your mod yet but there's something I think you should be aware of. There's a guy here in the forum whos been trying to enable 720p video recording on the Nexus One. Heres the thread: http://forum.xda-developers.com/showthread.php?t=672823
Check it out, you might be interested in helping.
thanks, will check it out and report
fiuza91 said:
Hey vnbuddy, I haven't tried to do your mod yet but there's something I think you should be aware of. There's a guy here in the forum whos been trying to enable 720p video recording on the Nexus One. Heres the thread: http://forum.xda-developers.com/showthread.php?t=672823
Check it out, you might be interested in helping.
Click to expand...
Click to collapse
Yeah - I saw the thread. You can try to change frameRate="24" to frameRate="30" if you want to play around with. There shouldn't be any side affects. But not sure if you will be able to achieve 30fps
Regards,
Kenny N
alexdzn said:
Is it possible to make the same with foto!!! to change resolution for widescreen fotos on Froyo, to display it on widescreen TV and laptop.....
Click to expand...
Click to collapse
I've checked their codes. At this point, it's not possible to adjust this setting without major modifications
Regards,
Kenny N
As it's written in that file shouldn't the high profile encode the video in mp4 (h264)? If I take a video it always saves it as 3gp...
Does changing the bitRate value have any noticeable effect?
vnbuddy2002 said:
Yeah - I saw the thread. You can try to change frameRate="24" to frameRate="30" if you want to play around with. There shouldn't be any side affects. But not sure if you will be able to achieve 30fps
Nice find vnbuddy, works great on Froyo leak, no FC's. Full screen and noticably sharper
Click to expand...
Click to collapse
vnbuddy2002 said:
The following instructions will enable you to record videos in fullscreen ( 800x480 )
1. Pull the file from the phone
adb pull /system/etc/media_profiles.xml
2. Make a copy of "media_profiles.xml" ( in case you want to restore it )
3. edit "media_profiles.xml" and change the following line from
-----
<EncoderProfile quality="high" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="3000000"
width="720" <---- this value
height="480"
frameRate="24" />
-----
to
-----
<EncoderProfile quality="high" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="3000000"
width="800"
height="480"
frameRate="24" />
-----
4. Save the changes and reupload the file
adb push media_profiles.xml /system/etc/
5. Reboot the phone
adb shell reboot
** Upon request, I've uploaded the file "media_profiles.xml.zip". Unzip and skip to step 4.
Regards,
Kenny N
Click to expand...
Click to collapse
Is this supposed to play existing mp4 files full screen by way of camera. I pushed the zip, rebooted but camera plays mp4 same, not full screen. ?
kamasi36 said:
Is this supposed to play existing mp4 files full screen by way of camera. I pushed the zip, rebooted but camera plays mp4 same, not full screen. ?
Click to expand...
Click to collapse
No, as stated in the thread title and OP, it makes it to where you record from here on out in 800x480, which is the same resolution as our screens (fullscreen). The video's that you have previously recorded were recorded in 720x480 (3:2).
vnbuddy2002 said:
The following instructions will enable you to record videos in fullscreen ( 800x480 )
1. Pull the file from the phone....
Click to expand...
Click to collapse
Trouble Pushing xml
I don't know what the problem is. Following instuctions, but I'm getting this message when I try to push the file..
C:\AndroidSDK\tools>adb push media_profiles.xml /system/etc
failed to copy 'media_profiles.xml' to '/system/etc/media_profiles.xml': Read-on
ly file system
C:\AndroidSDK\tools>
I'd love to try this mod out.
Luckycookie I think your phone has to be rooted to use "push" in adb. Mine is stock and I got the same error
Edit: oh, yours is rooted? Dunno then :s
luckycook82 said:
I don't know what the problem is. Following instuctions, but I'm getting this message when I try to push the file..
C:\AndroidSDK\tools>adb push media_profiles.xml /system/etc
failed to copy 'media_profiles.xml' to '/system/etc/media_profiles.xml': Read-on
ly file system
C:\AndroidSDK\tools>
I'd love to try this mod out.
Click to expand...
Click to collapse
do :
adb remount
adb push X:/media_profiles.xml /system/etc
awesome! does it just "stretch" the video, or does it truly capture in widescreen with this mod?
pakraider said:
awesome! does it just "stretch" the video, or does it truly capture in widescreen with this mod?
Click to expand...
Click to collapse
It truly captures the video using that resolution.
Regards,
Kenny N

Camera compression Quality ( 100%) ??

What is the camera compression ratio in the samsung galaxy S II??
On a few phones in the market, by modifying some system files, you can decrease the compresion ratio, and ende, gain more quality of every picture..
I think SGSII, with 2, 3Mb photos, doesn't compress the images right?
Thanks
no answers?
use vignette, the photos are bit better, file 4-6meg, only looks a bit better if you zoom in.

[MOD][ICS&GB][4/26/12]Camera HQ Mod: Extreme vs High (UPD: MDPI GB version updated)

[MOD][ICS&GB][4/26/12]Camera HQ Mod: Extreme vs High (UPD: MDPI GB version updated)
So, after searching around, i finally modded sony camera ui to have higher 10mbps bitrate @ 720p. It was not editable with media_profiles.xml because of the apk predefines the profile by itself, thanks to user Xperia-Ray user feedback on the next thread . So i altered the profile it needs for 720p. I chose at 10mbps to reduce hiccup or dropped frames and to comply with media_profiles.xml default bitrate cap.
As for photo quality, I think ics beta camera apk already gives you 90% compression value (file [email protected]) and think it can be modified simply from media_profiles.xml (since the apk only have 3 stepping of level, and after that the quality of 1-100 is determined by native code so no APK editing will solve that)
UPDATE: Added modified one for Gingerbread. Taken & Modded from Larut mod here. Thanks to him for 100% JPEQ Quality Mod
UPDATE 2: Added modified one for MDPI-devices Gingerbread.
UPDATE 3: MDPI Gingerbread updated, added override in JPEG Quality to 100%. apparently Gingerbread ignores media_profiles.xml.
UPDATE 4: Added Alternative Xperia Pro GB version.
UPDATE 5: Added new ICS 562 Leaked version based camera apk and 14Mbps quality.
UPDATE 6: Added new ICS 562 Official Nordic version with improvement of 14Mbps for 720p and 4Mbps for 480p.
UPDATE 7: ICS version Official is split into 2 option, Extreme Quality and High Quality, Extreme supports 14Mbps 720p + 6Mbps VGA Quality. while high is set at 10Mbps 720p + 4mbps VGA Quality.
UPDATE 7: Gingerbread version is split into 2 option, Extreme Quality and High Quality, Extreme supports 14Mbps 720p + 6Mbps VGA Quality. while high is set at 10Mbps 720p + 4mbps VGA Quality.
UPDATE 8: Added 5MP Option for 8MP module. Thanks to Xperia-Ray for the tips!
UPDATE 9: Added Alternative Version for ICS which reduce (or eliminate?) choppiness while recording HD. Please Try and give me feedback. Thanks to Xperia-Ray for the tips!
UPDATE 10: MDPI version is split into Extreme and High version.
DOWNLOADS
Gingerbread MDPI Version Download link:
http://www.mediafire.com/?03uqm3ktyzcv7rk Extreme: For 14Mbps quality + 6Mbps VGA Quality + 100% JPEG Quality
http://www.mediafire.com/?ao5wnia6cmanv4d High: For 10Mbps quality + 4Mbps VGA Quality + 100% JPEG Quality
https://www.box.com/s/81039f09e6b3de792181 Stock File. Thanks to Till-Kruspe
Gingerbread HDPI Version Download link:
http://www.mediafire.com/?apnu5jm4fu8en6x Extreme: For 14Mbps quality + 6Mbps VGA Quality + 100% JPEG Quality
http://forum.xda-developers.com/showpost.php?p=25165187&postcount=161 High: For 10Mbps quality + 4Mbps VGA Quality + 100% JPEG Quality + 5MP Still Capture, thanks to Xperia-Ray!
http://forum.xda-developers.com/attachment.php?attachmentid=1007250&d=1334589298 Stock File. Thanks to Lightspeed_x
ICS Official HDPI Version Download link:
http://www.mediafire.com/?deuzi41qakbmljd Extreme: For 14Mbps quality + 6Mbps VGA Quality + 5MP Still Capture
http://www.mediafire.com/?goy888j58fystt9 High: For 10Mbps quality + 4Mbps VGA Quality + 5MP Still Capture
http://www.mediafire.com/?59tw5c5mfdrlmp2 Normal: For stock quality + 5MP Still Capture
ICS Official Version Alternate Video Codec Download link:
http://www.mediafire.com/?tbeg1yh1uk0laa3
G'day!
FAQ:
Q: My Recording is only up to 10Mbps even though i use 14Mbps pack
A: Change the following in etc/media_profiles.xml from:
Code:
<VideoEncoderCap name="h264" enabled="true"
minBitRate="96000" maxBitRate="10000000"
minFrameWidth="176" maxFrameWidth="1280"
minFrameHeight="144" maxFrameHeight="720"
minFrameRate="1" maxFrameRate="30" />
<VideoEncoderCap name="m4v" enabled="true"
minBitRate="96000" maxBitRate="10000000"
minFrameWidth="176" maxFrameWidth="1280"
minFrameHeight="144" maxFrameHeight="720"
minFrameRate="1" maxFrameRate="30" />
to
Code:
<VideoEncoderCap name="h264" enabled="true"
minBitRate="96000" maxBitRate="[COLOR="Red"]14000000[/COLOR]"
minFrameWidth="176" maxFrameWidth="1280"
minFrameHeight="144" maxFrameHeight="720"
minFrameRate="1" maxFrameRate="30" />
<VideoEncoderCap name="m4v" enabled="true"
minBitRate="96000" maxBitRate="[COLOR="Red"]14000000[/COLOR]"
minFrameWidth="176" maxFrameWidth="1280"
minFrameHeight="144" maxFrameHeight="720"
minFrameRate="1" maxFrameRate="30" />
Q: In ICS it's choppy!
A: Turn Off Video Stabilization, seems like the stabilization is done in software, causing stuttering. Hope somebody can fix the camera driver for that.
Q: The Sound is only mono? Help!
A: Change media_profiles.xml from
Code:
<AudioEncoderCap name="aac" enabled="true"
minBitRate="128000" maxBitRate="128000"
minSampleRate="48000" maxSampleRate="48000"
minChannels="1" maxChannels="1" />
to
Code:
<AudioEncoderCap name="aac" enabled="true"
minBitRate="128000" maxBitRate="128000"
minSampleRate="48000" maxSampleRate="48000"
minChannels="1" maxChannels="[COLOR="Red"]2[/COLOR]" />
Q: How to change JPEG Compression value in ICS?
A: Change the following in etc/media_profiles.xml from:
Code:
<ImageEncoding quality="90" />
<ImageEncoding quality="80" />
<ImageEncoding quality="70" />
<ImageDecoding memCap="20000000" />
to
Code:
<ImageEncoding quality="[COLOR="Red"]100[/COLOR]" />
<ImageEncoding quality="[COLOR="Red"]90[/COLOR]" /> [I]// This is the medium quality, u can set it to 100% to override if you wish[/I]
<ImageEncoding quality="[COLOR="Red"]80[/COLOR]" /> [I]// This is the low quality, u can set it to 100% to override if you wish[/I]
<ImageDecoding memCap="[COLOR="Red"]30000000[/COLOR]" />
These lines depend on how many cameras you get. There will be 2 camera setting if your device has front cam, so if you want to improve the front one, set the above twice to the respective parent tag.
sent from my white ray using XDA App
Oh, thanks you so much!
Great work hansip, Now thats a Truely working Mod...
Short of thanks for today...
hansip87 said:
So, after searching around, i finally modded sony camera ui to have higher 10mbps bitrate @ 720p. It was not editable with media_profiles.xml because of the apk predefines the profile by itself. So i altered the profile it needs for 720p. I chose at 10mbps to reduce hiccup or dropped frames and to comply with media_profiles.xml default bitrate cap.
As for photo quality, I think ics beta camera apk already gives you 90% compression value (file [email protected]) and think it can be modified simply from media_profiles.xml (since the apk only have 3 stepping of level, and after that the quality of 1-100 is determined by native code so no APK editing will solve that)
Ok it's uploaded now, flash thru CWM & have a fun time!
G'day!
sent from my white ray using XDA App
Click to expand...
Click to collapse
great work!!thx!
but can it run in 2.3 firmware??
hjf9259 said:
great work!!thx!
but can it run in 2.3 firmware??
Click to expand...
Click to collapse
Unfortunately no. But I can build one if someone lend me the apk.
sent from my white ray using XDA App
yeah he just got nothing to do .. he definitely do OVERTIME
c'mon give him the apk!
hansip87 said:
Unfortunately no. But I can build one if someone lend me the apk.
sent from my white ray using XDA App
Click to expand...
Click to collapse
Finally!! Thank you, please check my post on same subject
http://forum.xda-developers.com/showpost.php?p=24138141&postcount=6
There is the link for the moded camera with quality mod (2.4 mb pics) pliz mod it to use 10Mbs
The phone can support up to 13mbs with lgcamera [email protected] 30fps.
10Mbs will be enough.
P.s do you know what would happen if you enable wmv,wma in the media_profiles?
Can we record at this format?
I didnt try to enable it because I read someone got boot loop. I still dont have backup and flash tools.
Xperia-Ray said:
Finally!! Thank you, please check my post on same subject
http://forum.xda-developers.com/showpost.php?p=24138141&postcount=6
There is the link for the moded camera with quality mod (2.4 mb pics) pliz mod it to use 10Mbs
The phone can support up to 13mbs with lgcamera [email protected] 30fps.
10Mbs will be enough.
P.s do you know what would happen if you enable wmv,wma in the media_profiles?
Can we record at this format?
I didnt try to enable it because I read someone got boot loop. I still dont have backup and flash tools.
Click to expand...
Click to collapse
Ok already added now Please try and report back if there's an issue with that.
hansip87 said:
Ok already added now Please try and report back if there's an issue with that.
Click to expand...
Click to collapse
Works perfectlly! Thank U
On the EXIF's there is no change. Everything is the same.
On Neo V photos are approximately 3 times bigger (0.5MB->1.5MB)
At videos there is change in info only about bitrate
Stock Bit rate : 5 993 Kbps
Custom Bit rate : 9 986 Kbps
And the size of videos is approximately 2 times bigger - in my test 15 sec movie at stock was ~11MB, at custom it was ~20MB.
Differences... I just did one shot of photo and video and weather sucks so there is no very good visible details.
JoHnNy08PL said:
On the EXIF's there is no change. Everything is the same.
On Neo V photos are approximately 3 times bigger (0.5MB->1.5MB)
At videos there is change in info only about bitrate
Stock Bit rate : 5 993 Kbps
Custom Bit rate : 9 986 Kbps
And the size of videos is approximately 2 times bigger - in my test 15 sec movie at stock was ~11MB, at custom it was ~20MB.
Differences... I just did one shot of photo and video and weather sucks so there is no very good visible details.
Click to expand...
Click to collapse
Jpeg has incomplete details, lacking the compression value. So the only parameter left, is the file size.
The video, well at least the metadata tells you the truth, so please report back if you can spot the differences.
Me myself is not a quality nitpicker (6mbps is quite good actually for me) so i'll give it to you all to decide
sent from my white ray using XDA App
GB 100% JPEQ Quality can working on ICS Beta ?
langtudongnai45 said:
GB 100% JPEQ Quality can working on ICS Beta ?
Click to expand...
Click to collapse
Edit the media_profiles.xml to fix your needs. no need for APK editing for ICS one. and yet, ICS already give you much larger file than Gingerbread, which indicates that the compression is already on 90%-100% level.
hansip87 said:
Edit the media_profiles.xml to fix your needs. no need for APK editing for ICS one. and yet, ICS already give you much larger file than Gingerbread, which indicates that the compression is already on 90%-100% level.
Click to expand...
Click to collapse
Thank u so much can do 120%
support for LWW please
tks for share ...
trantiena10 said:
support for LWW please
tks for share ...
Click to expand...
Click to collapse
well if you have the apk i'll mod that for you
you can download at : http://www.mediafire.com/?4c28r3wc0qe1e0l
tks for helping
can you change the resolution to 1080p??
Will this work on Rayonium(stock based GB rom) ??
Sent from my Optimus 2X using XDA
andrewfx1 said:
can you change the resolution to 1080p??
Click to expand...
Click to collapse
technically it's possible, but the CPU won't behave normally. Lack of processing power.
nexus: it should be. Backup first and try it.

Better camera quality through media_profile.xml editing

Hello all,
I don't actually have S4 Zoom yet but for those who adventurous enough you could try editing media_profile.xml inside /system/etc/ such can be found here
ImageEncoding quality (95.99|80|70|60|50|40)
^^^^^^
Change default max 90% JPG to 95.99%
<ImageEncoding quality="95.99" />
<ImageEncoding quality="95.99" />
<ImageEncoding quality="95.99" />
<ImageDecoding memCap="40000000" />
^^^^^^
Change default 90, 80, 70 JPG to force 95.99% all the time and increases the file size cap to 4MB from 2MB. You will need to change this settings in two places.
Click to expand...
Click to collapse
For those who tried please report back. I quite interested with this phone but the image compression looks pretty bad.
nX3NTY said:
Hello all,
I don't actually have S4 Zoom yet but for those who adventurous enough you could try editing media_profile.xml inside /system/etc/ such can be found here
For those who tried please report back. I quite interested with this phone but the image compression looks pretty bad.
Click to expand...
Click to collapse
Has anyone tried this yet? (I haven't, without rooting my phone)
I am currently using "superfine" 16M pixel option, file szie is ~ 5MB per picture
thanks
do you think there is a mod to increase the resolution of the panorama mode?
With galaxy s4 i can make panorama 22000x1500 pixels! With s4 zoom not more than 4000x500px :crying:
yeah.... i dont understand... panorama photos are ugly & small... WTF ?! i made lot of them & then at home i was like, are you fuucking kidding me.... ?! its totally uselles mode, photos looks like 8bit thumbnails...

camera tweaks

Hey everyone!
First and Foremost, DO A NANDROID BACKUP!!!!! I am not responsible for any mistakes that you make or if anything happens to your phone.
for thoes who want to test non compression settings and are rooted :
you can flash in magisk and that allows to set jpeg 100%
It's only work with stock camera . It's has no effect in gcam or ....
Changelog:
V1-
-set JPEG quality to 100%
-Increase 1080 and 4k bit rate
-Set audio to channel 2 (stereo)
-Increase audio bit rate
-Increase photos details
V2-
-Some changes for better vibrance and saturation
V3-
-Increase video quality
-Increase audio quality
-Increase photos details
V4-
- Larger Image Buffer
- Larger colour information flow from colour sensor in blend matrix
- Better overall handling of ISO exposure settings
- Better low light performance
- Less noise in low ISO
- More aggressive handling of high ISO aliasing
- Extra frame of bracketing for HDR modes
Enjoy
What does it contain?
Yes, some explanation and info would be welcome haha.
EDIT : guys, don't flash until we have more info.
look at the README:
Changelog:
Code:
v1 - Initial Release
v2 - Fixed the earpiece not working throughout the system
v3 - Fixed Earpiece not switching from multimedia to calls
v4 - Fixed bluetooth audio issue
v5 - Fixed right channel not playing through main speaker
v6 - Fixed latency issue between earpiece and main speaker
The rest seems legit, so it doesn't seem to be a scam, however, it would be good to know exactly what it does. Also, since you used as a model the stereo speaker mod from @acervenky , it would be nice to give him some credit.
Samples
Gcam - stock camera - camera tweak
More sharp and WB super accurate
Works as a module and easy to uninstall?
Just delete from magisk model
https://forum.xda-developers.com/newreply.php?do=newreply&p=78280377
Apart from JPEG quality, which was set to 100% by you, these files have no impact on photos, processing or whitebalance.
They control video.
Also, OnePlus' stock camera and for example GCam are already using 95% JPEG quality.
There is no noticeable difference between 95 and 100%. All this does is needlessly increasing filesize.
Providing downsized samples through the forum is also not saying anything.
The "difference" which can be seen in your samples is not caused by the change you did to the files.
You just took a bad photo from what I can see (bad focus / handshake?!).
Also keep in mind that stock camera sometimes does not apply postprocessing when using it right after GCam.
Clear recents first if you compare them.
If I missed something, please provide thorough information to what you've actually changed.
No disrespect, but in terms of photo-quality this is a placebo-tweak.
V2
Samples:
Gcam - stock - camera tweak
AcmE85 said:
https://forum.xda-developers.com/newreply.php?do=newreply&p=78280377
Apart from JPEG quality, which was set to 100% by you, these files have no impact on photos, processing or whitebalance.
They control video.
Also, OnePlus' stock camera and for example GCam are already using 95% JPEG quality.
There is no noticeable difference between 95 and 100%. All this does is needlessly increasing filesize.
Providing downsized samples through the forum is also not saying anything.
The "difference" which can be seen in your samples is not caused by the change you did to the files.
You just took a bad photo from what I can see (bad focus / handshake?!).
Also keep in mind that stock camera sometimes does not apply postprocessing when using it right after GCam.
Clear recents first if you compare them.
If I missed something, please provide thorough information to what you've actually changed.
No disrespect, but in terms of photo-quality this is a placebo-tweak.
Click to expand...
Click to collapse
Just try it you will see the changes
Nice, thank's you for this mod ?
V3
Flash part 1 and part 2
javad79 said:
Samples:
Gcam - stock - camera tweak
Click to expand...
Click to collapse
Image 1 and 3 are screenshots ?
Photo seems actually nice on camera tweaked but your presentation and samples look weird... what's your mod actually modifying to improve quality??
Looking at the files I agree with the earlier comment, looks like your touching video encoding/decoding... don't see anything related to picture in there...
Gugus38 said:
Image 1 and 3 are screenshots ?
Photo seems actually nice on camera tweaked but your presentation and samples look weird... what's your mod actually modifying to improve quality??
Looking at the files I agree with the earlier comment, looks like your touching video encoding/decoding... don't see anything related to picture in there...
Click to expand...
Click to collapse
In V3 I make changed in Media profile to change jpeg quality and increase audio quality and force it to record stereo and increase video quality by changing bit rate
In part 2 I add some tweak
I belief with this mod you can get better results than stock
Camera or gcam
V3 increase gcam quality too
I'm so busy now and couldn't test or send good samples
If you have any ideas to increase quality just say it
Stock-gcam-tweake
Upload to imgur or any other site that doesn't compress the photos. Thx
http://imgur.com/gallery/I5EnS2W
I am a little confused . What file should I install?
javad79 said:
V3
Flash part 1 and part 2
Click to expand...
Click to collapse
Falsh first one after that second one

Categories

Resources