HTC Camera jpeg quality - HTC Amaze 4G

The default jpeg quality is optimized for size rather than quality. That makes post-editing difficult. I have got the jpeg quality figured it out. You can do so editing the /etc/media_profiles.xml and a reboot.

Hey Crazy, could you please post sample pics of the default quality and quality after you've edited the media_profiles.xml file? Thanks.

dutch_papi said:
Hey Crazy, could you please post sample pics of the default quality and quality after you've edited the media_profiles.xml file? Thanks.
Click to expand...
Click to collapse
im with you on that

Look in the file, none of that has to do with the camera, only the camcorder.. and the size of the jpegs is probably limited to allow capture of 60fps at whatever quality.
Try again, this has NOTHING to do with camera.
Code:
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2010 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
[url]http://www.apache.org/licenses/LICENSE-2.0[/url]
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE MediaSettings [
<!ELEMENT MediaSettings (CamcorderProfiles,
EncoderOutputFileFormat+,
VideoEncoderCap+,
AudioEncoderCap+,
VideoDecoderCap,
AudioDecoderCap)>
<!ELEMENT CamcorderProfiles (EncoderProfile+, ImageEncoding+, ImageDecoding, Camera)>
<!ELEMENT EncoderProfile (Video, Audio)>
<!ATTLIST EncoderProfile quality (high|low) #REQUIRED>
<!ATTLIST EncoderProfile fileFormat (mp4|3gp) #REQUIRED>
<!ATTLIST EncoderProfile duration (30|60) #REQUIRED>
<!ELEMENT Video EMPTY>
<!ATTLIST Video codec (h264|h263|m4v) #REQUIRED>
<!ATTLIST Video bitRate CDATA #REQUIRED>
<!ATTLIST Video width CDATA #REQUIRED>
<!ATTLIST Video height CDATA #REQUIRED>
<!ATTLIST Video frameRate CDATA #REQUIRED>
<!ELEMENT Audio EMPTY>
<!ATTLIST Audio codec (amrnb|amrwb|aac) #REQUIRED>
<!ATTLIST Audio bitRate CDATA #REQUIRED>
<!ATTLIST Audio sampleRate CDATA #REQUIRED>
<!ATTLIST Audio channels (1|2) #REQUIRED>
<!ELEMENT ImageEncoding EMPTY>
<!ATTLIST ImageEncoding quality (100|90|85|80|60|50|40) #REQUIRED>
<!ELEMENT ImageDecoding EMPTY>
<!ATTLIST ImageDecoding memCap CDATA #REQUIRED>
<!ELEMENT Camera EMPTY>
<!ATTLIST Camera previewFrameRate CDATA #REQUIRED>
<!ELEMENT EncoderOutputFileFormat EMPTY>
<!ATTLIST EncoderOutputFileFormat name (mp4|3gp) #REQUIRED>
<!ELEMENT VideoEncoderCap EMPTY>
<!ATTLIST VideoEncoderCap name (h264|h263|m4v|wmv) #REQUIRED>
<!ATTLIST VideoEncoderCap enabled (true|false) #REQUIRED>
<!ATTLIST VideoEncoderCap minBitRate CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap maxBitRate CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap minFrameWidth CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap maxFrameWidth CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap minFrameHeight CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap maxFrameHeight CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap minFrameRate CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap maxFrameRate CDATA #REQUIRED>
<!ELEMENT AudioEncoderCap EMPTY>
<!ATTLIST AudioEncoderCap name (amrnb|amrwb|aac|wma) #REQUIRED>
<!ATTLIST AudioEncoderCap enabled (true|false) #REQUIRED>
<!ATTLIST AudioEncoderCap minBitRate CDATA #REQUIRED>
<!ATTLIST AudioEncoderCap maxBitRate CDATA #REQUIRED>
<!ATTLIST AudioEncoderCap minSampleRate CDATA #REQUIRED>
<!ATTLIST AudioEncoderCap maxSampleRate CDATA #REQUIRED>
<!ATTLIST AudioEncoderCap minChannels (1|2) #REQUIRED>
<!ATTLIST AudioEncoderCap maxChannels (1|2) #REQUIRED>
<!ELEMENT VideoDecoderCap EMPTY>
<!ATTLIST VideoDecoderCap name (wmv) #REQUIRED>
<!ATTLIST VideoDecoderCap enabled (true|false) #REQUIRED>
<!ELEMENT AudioDecoderCap EMPTY>
<!ATTLIST AudioDecoderCap name (wma) #REQUIRED>
<!ATTLIST AudioDecoderCap enabled (true|false) #REQUIRED>
]>
<!--
This file is used to declare the multimedia profiles and capabilities
on an android-powered device.
-->
<MediaSettings>
<!-- Each camcorder profile defines a set of predefined configuration parameters -->
<CamcorderProfiles cameraId="0">
<EncoderProfile quality="high" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="3000000"
width="720"
height="480"
frameRate="30" />
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="low" fileFormat="3gp" duration="30">
<Video codec="m4v"
bitRate="256000"
width="176"
height="144"
frameRate="15" />
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<ImageEncoding quality="100" />
<ImageEncoding quality="90" />
<ImageEncoding quality="85" />
<ImageDecoding memCap="60000000" />
<Camera previewFrameRate="0" />
</CamcorderProfiles>
<CamcorderProfiles cameraId="1">
<EncoderProfile quality="high" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="3000000"
width="640"
height="480"
frameRate="30" />
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="low" fileFormat="3gp" duration="30">
<Video codec="m4v"
bitRate="256000"
width="176"
height="144"
frameRate="15" />
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<ImageEncoding quality="100" />
<ImageEncoding quality="90" />
<ImageEncoding quality="85" />
<ImageDecoding memCap="60000000" />
<Camera previewFrameRate="0" />
</CamcorderProfiles>
<EncoderOutputFileFormat name="3gp" />
<EncoderOutputFileFormat name="mp4" />
<!--
If a codec is not enabled, it is invisible to the applications
In other words, the applications won't be able to use the codec
or query the capabilities of the codec at all if it is disabled
-->
<VideoEncoderCap name="h264" enabled="true"
minBitRate="64000" maxBitRate="16000000"
minFrameWidth="176" maxFrameWidth="1920"
minFrameHeight="144" maxFrameHeight="1080"
minFrameRate="1" maxFrameRate="30" />
<VideoEncoderCap name="h263" enabled="true"
minBitRate="64000" maxBitRate="2000000"
minFrameWidth="176" maxFrameWidth="800"
minFrameHeight="144" maxFrameHeight="480"
minFrameRate="1" maxFrameRate="30" />
<VideoEncoderCap name="m4v" enabled="true"
minBitRate="64000" maxBitRate="8000000"
minFrameWidth="176" maxFrameWidth="1280"
minFrameHeight="144" maxFrameHeight="720"
minFrameRate="1" maxFrameRate="30" />
<AudioEncoderCap name="amrnb" enabled="true"
minBitRate="5525" maxBitRate="12200"
minSampleRate="8000" maxSampleRate="8000"
minChannels="1" maxChannels="1" />
<!--
FIXME:
We do not check decoder capabilities at present
At present, we only check whether windows media is visible
for TEST applications. For other applications, we do
not perform any checks at all.
-->
<VideoDecoderCap name="wmv" enabled="true"/>
<AudioDecoderCap name="wma" enabled="true"/>
</MediaSettings>

No. It does change the jpeg quality for the HTCCamera. I can confirm it with the bigger picture file size and the decompiled apk. The first camcorder profile is the back camera and the 2nd is the front one. The 3 ImageCoder tags in each profile correspond to the android api http://developer.android.com/reference/android/media/CameraProfile.html. They go Super,Fine, and Normal. HTCCamera default is using "super".

crazypotato said:
No. It does change the jpeg quality for the HTCCamera. I can confirm it with the bigger picture file size and the decompiled apk. The first camcorder profile is the back camera and the 2nd is the front one. The 3 ImageCoder tags in each profile correspond to the android api http://developer.android.com/reference/android/media/CameraProfile.html. They go Super,Fine, and Normal. HTCCamera default is using "super".
Click to expand...
Click to collapse
if you post pictures comparing them side by side i would do this haha

https://lh6.googleusercontent.com/-.../AAAAAAAACD8/mr5Ey2Fx1SY/s2048/12%20-%201.jpg
This is the after edit picture using the WIND Mobile version of HTCCamera.apk. You will notice the ISO number range is different from the TMobile one.

crazypotato said:
https://lh6.googleusercontent.com/-.../AAAAAAAACD8/mr5Ey2Fx1SY/s2048/12%20-%201.jpg
This is the after edit picture using the WIND Mobile version of HTCCamera.apk. You will notice the ISO number range is different from the TMobile one.
Click to expand...
Click to collapse
where is the before?

crazypotato said:
The default jpeg quality is optimized for size rather than quality. That makes post-editing difficult. I have got the jpeg quality figured it out. You can do so editing the /etc/media_profiles.xml and a reboot.
Click to expand...
Click to collapse
This has already been around for a long time! NRG's ROM has the tweaks built in. I've been using a mod similar to this since the Amaze first came out. It does increase the size of the file and gives the best quality but you have to remember you are still using an image sensor slightly bigger than a pin head. LOL. You can't expect to get fantastic quality out of a cell phone camera! That said, this phone does have a very good camera....for a cell phone!

frodoboy said:
This has already been around for a long time! NRG's ROM has the tweaks built in. I've been using a mod similar to this since the Amaze first came out. It does increase the size of the file and gives the best quality but you have to remember you are still using an image sensor slightly bigger than a pin head. LOL. You can't expect to get fantastic quality out of a cell phone camera! That said, this phone does have a very good camera....for a cell phone!
Click to expand...
Click to collapse
nrg has this mod in his roms? ooooo

I wish someone could change the HTC Camera's stupid file number/naming system back to smarter stock android with date and I think location or something in the file name.

so i just replace /etc/media_profiles.xml and reboot and its done, and is the difference noticeable?

Like I said, I found it a must if I edit the photo in Photoshop or in lightroom. Each time you resave a jpg file some percentage of details will be gone. I very often need to correct Whitehalance in the picture.
Sent from my HTC_Amaze_4G using xda premium

crazypotato said:
Like I said, I found it a must if I edit the photo in Photoshop or in lightroom. Each time you resave a jpg file some percentage of details will be gone. I very often need to correct Whitehalance in the picture.
Sent from my HTC_Amaze_4G using xda premium
Click to expand...
Click to collapse
maybe the way you edit your photos.. ive never had an issue with quality loss. ill mess with this sometime though

DONT MESS WITH IT. IT SOFT BRICKED MY PHONE

Sorry to say. It has nothing to do with the modification mentioned here. That is your own fault.
Sent from my HTC_Amaze_4G using xda premium

question
hey all..this is a bit off the jpeg thread but related to the cam, does anyone else's cam look super crisp on the screen but the snapshot taken is considerably darker??
i tried all modes and the result is the same, no option to brightness either?? is it a rom thing?? using 4 bar sense faux kernel

dadogintown said:
hey all..this is a bit off the jpeg thread but related to the cam, does anyone else's cam look super crisp on the screen but the snapshot taken is considerably darker??
i tried all modes and the result is the same, no option to brightness either?? is it a rom thing?? using 4 bar sense faux kernel
Click to expand...
Click to collapse
Not mine. The shots look the same! I use NRG's ROM and stock kernel.

dadogintown said:
hey all..this is a bit off the jpeg thread but related to the cam, does anyone else's cam look super crisp on the screen but the snapshot taken is considerably darker??
i tried all modes and the result is the same, no option to brightness either?? is it a rom thing?? using 4 bar sense faux kernel
Click to expand...
Click to collapse
Because HTC camera set the brightness to max. Set your default screen brightness to max if you want to match it.
Sent from my HTC_Amaze_4G using xda premium

crazypotato said:
Because HTC camera set the brightness to max. Set your default screen brightness to max if you want to match it.
Sent from my HTC_Amaze_4G using xda premium
Click to expand...
Click to collapse
Thanks a bunch I had dimmed the screen brightness to save power and followed your advise..makes alot of difference...
Sent from my HTC_Amaze_4G using xda premium

Related

[FIX][TUT] Video Recording A/V Sync for FroyoBread (CM6 ROMS) 9-17-2011

UPDATED 9-17-2011
Hey guys!
This sounds great! I'd applied a solution for syncing-in the video and audio on video recording on FroyoBread for our X8 without using lgCamera or other camera apps.
Simple, just update with xRecovery.
Ready made:
Only for FroyoBread (UPDATED 9-17-2011) ----> download here
or
do it manually using rootexplorer, copy (UPDATED 9-17-2011) this file to /system/etc
only for FBv023b, if you use other ROM, check out below.
For Other CM6 ROMs:
go to your RootExplorer: /system/etc/media_profiles.xml, edit it using text editor.
find the lines containing the "high" and "low" fileFormat, bitRate, frameRate, Audio codec and its bitrate & Samplerate.
Example: (from FroyoBread)
Code:
<CamcorderProfiles>
<EncoderProfile quality="high" fileFormat="3gp" duration="60">
<Video codec="h263" bitRate="1600000" width="640" height="480" frameRate="30" />
<Audio codec="aac" bitRate="12600" sampleRate="8000" channels="1" />
</EncoderProfile>
<EncoderProfile quality="low" fileFormat="mp4" duration="30">
<Video codec="m4v" bitRate="256000" width="176" height="144" frameRate="15" />
<Audio codec="aac" bitRate="12800" sampleRate="8000" channels="1" />
</EncoderProfile>
Change those into these.
Guide: UPDATED 9-17-2011
quality: high
fileFormat: mp4
duration: 60
Video codec: h263
bitrate: 1600000
width: 640
height: 480
framerate: 20
Audio codec: aac
bitrate: 12200
samplerate: 8000
channels: 1
quality: low
fileFormat: mp4
duration: 30
Video codec: m4v
bitrate: 256000
width: 176
height: 144
framerate: 15
Audio codec: aac
bitrate: 12200
samplerate: 8000
channels: 1
Example: (from FroyoBread)
Code:
<CamcorderProfiles>
<EncoderProfile quality="high" fileFormat="mp4" duration="60">
<Video codec="h263" bitRate="1000000" width="640" height="480" frameRate="20" />
<Audio codec="aac" bitRate="12800" sampleRate="8000" channels="1" />
</EncoderProfile>
<EncoderProfile quality="low" fileFormat="mp4" duration="30">
<Video codec="m4v" bitRate="256000" width="176" height="144" frameRate="15" />
<Audio codec="aac" bitRate="12800" sampleRate="8000" channels="1" />
</EncoderProfile>
save it, and reboot.
Then test it.
I hope you will understand the tut...
Click to expand...
Click to collapse
donate to my THANKS meter.
Nice jk now, Froyobread will be happy to know this
uffffs i am also working all these things today
i am also working for improved camera (camera lib) but nothing improve
well thnx guy i am gonna test it
i need improved camera like gdx camera not camcorder
deedii said:
Nice jk now, Froyobread will be happy to know this
Click to expand...
Click to collapse
and I am happy.
ithunter said:
uffffs i am also working all these things today
i am also working for improved camera (camera lib) but nothing improve
well thnx guy i am gonna test it
i need improved camera like gdx camera not camcorder
Click to expand...
Click to collapse
Oh ithunter sweetie this fix is for CM6, GDX is CM7 and video/image was already fixed and sync. We got this problem on CM6 really.
ithunter said:
uffffs i am also working all these things today
i am also working for improved camera (camera lib) but nothing improve
well thnx guy i am gonna test it
i need improved camera like gdx camera not camcorder
Click to expand...
Click to collapse
oh man, sorry. continue what you're doing man.
i am also talking about cm6
now my device is runing with froyobread last edition with myown some improvements
@dx is not providing us camera lib for cm6
so i am researching for lib editing and porting to cm6
ithunter said:
i am also talking about cm6
now my device is runing with froyobread last edition with myown some improvements
@dx is not providing us camera lib for cm6
so i am researching for lib editing and porting to cm6
Click to expand...
Click to collapse
well good luck mate. thanks in advance.
press thnx as i just
OMG you're great!
Thanks a lot, now CM6 is Practically Bugless
You Rock!
Not working on Krauser SROM, i've tried with xrecov and manually, but nothing, unsync
Probably doesn't work on this rom, maybe i will try FBread
RockitOut11 said:
Not working on Krauser SROM, i've tried with xrecov and manually, but nothing, unsync
Probably doesn't work on this rom, maybe i will try FBread
Click to expand...
Click to collapse
Results:
Krauser SROM : Not Working
FroyoBread v023b : Working
MiniCM6 1.0.2 : I will test it tonight
RockitOut11 said:
Results:
Krauser SROM : Not Working
FroyoBread v023b : Working
MiniCM6 1.0.2 : I will test it tonight
Click to expand...
Click to collapse
Thanks! I will be pleased to declare it working only for FroyoBread.
Edit: I made a TUT.
Thanks for the info,
Just for the record setting fps to 25 should do the sync too, check it HERE
mimorqleko said:
Thanks for the info,
Just for the record setting fps to 25 should do the sync too, check it HERE
Click to expand...
Click to collapse
But i tested it has millisecond delay from the audio. I think Fps 25 works only with lgcamera.
Sent from my X8 using xda premium
i've made a clean install of froyobread and install this zip.. but every time i switch to video mode... the image shows.. and begin to slow... and a FC appears....
=/
hunff said:
i've made a clean install of froyobread and install this zip.. but every time i switch to video mode... the image shows.. and begin to slow... and a FC appears....
=/
Click to expand...
Click to collapse
what version of FroyoBread are you using? it works in v023b
do it manually or follow the TUT.
Thanks for sharing!!
I've included this file in the unofficial Froyobread update v11. All credits to you!
check it HERE
NICE ONE JKRAUSER!
We have almost Complete Froyo now It's 98%? I think hehe, and Mimorqleko for giving us Unofficial Updates too
Thanks, It is working. Though it is not perfect but ir removes a huge miss sync A/V from Froyobread.

[update]x8 Improved video recording (m4v)

this update is taken from SONY ERICSSON XPERIA X8 (Indonesia)
which is share by Agung Ikspi D'da Vinci
it work perfectly Tested by me
have fun guyz
download
for xrec
CWM update
#tested on GDX
#i am not responsible if this rise any other bug or brick your cute kitten(Shakira)
Normally 5mp camera take VGA video so it can be called 5mp video camera with audio video improvement
hi
this update is only for Android 2.1 ?
or working on GingerDX ?
Upload some example recorded with this tweak (original file).
ithunter said:
this update is taken from SONY ERICSSON XPERIA X8 (Indonesia)
which is hare by Agung Ikspi D'da Vinci
it work perfect Tested by me
have fun guyz
download
for xrec
CWM update
Click to expand...
Click to collapse
it is working on FXP???
Just try it guyz... m sure it work it record .mp4 video
hmm, i think it is works good, but for me it record in .m4v not mp4
What the ****? Is typo in title or? 5mp video?
Dare-Devil Inside said:
What the ****? Is typo in title or? 5mp video?
Click to expand...
Click to collapse
Exactly, x8 with 3,2mp camera, record 5mp videos?
Waiting for recorded file with this.
i do not know if it is 5mp, but video is now in bigger resolution and 15sec of video (33mb)
Sorry for OT,you've got their permission for this?
Ppl in these group seems doesn't like if we post their things in xda without asking them first
i think these lines do the whole work but i dont believe that the video quality changed maybe audio because of AAC recording..
Code:
<CamcorderProfiles>
<EncoderProfile quality="high" fileFormat="mp4" duration="60">
<Video codec="m4v"
bitRate="32000000"
width="640"
height="480"
frameRate="30" />
<Audio codec="aac"
bitRate="150000"
sampleRate="48000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="low" fileFormat="3gp" duration="30">
<Video codec="m4v"
bitRate="256000"
width="176"
height="144"
frameRate="15" />
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<ImageEncoding quality="99" />
<ImageEncoding quality="80" />
<ImageEncoding quality="70" />
<ImageDecoding memCap="20000000" />
<Camera previewFrameRate="0" />
</CamcorderProfiles>
<EncoderOutputFileFormat name="3gp" />
<EncoderOutputFileFormat name="mp4" />
when i'm installing it in CWM it's writing "Welcome to gingerDx v015 phone fix"! You are maked this update.zip from GDX phone fix?
i loled with this.
After this you will bring us a Super AMOLED Screen right? or a Dual-Core 1.4ghz, or even a front camera to video-calls, or even a HDMI output?
Noob people...
You cannot record with 5MP because there's a hardware limitation called "X8 was made with a 3MP camera"
You can record with a little higher resolution, but it will probably make your FPS go a little down i think
is this for real? eheheh.. kindly show some video bro..
where's the 5mp part here?? only changed the 3gp to mp4 in the gallery, become m4v in root explorer what's next? 12mp x8?
it's not 5mp! it's 640x480 video recording! it's for x10 mini/pro!
If it was 5 Mega pixels video the resolution would be 2560x1920 pixels even the iPhone 4S can only shoot video in 1920×1080 with its 8 Mega pixel camera.
no wonder, anothers dream
wake-up!!!!!!!!!! our phone is X8
i use video converting tool to convert .flv format to .mp4 and i got surprize file size become bigger...
now i just know my video converter tool maybe have 10mpixel video recording
its funny...
4 sure Not 5MP.
but is this a trusted patch for record in m4v ???
Wow im just know it was posted here, its was created by fde fan agung on facebook it was a great way to wasted your memory space im let him doing that , because who knows someday he'll find something

Improved Camcorder sound quality in CM7

i had been using mik's CM7 (all versions), and the camcorder sound quality is horrible. there is a strange sound distortion and a distorted kinda background noise.
but theres a quite easy workaround for CM7 roms. you can change the audio encoding in /etc/media_profiles.xml
this is a workaround, not a fix. both the stock cam and cm7 cam records audio in AMR-NB, at 8000Hz. I dunno why only CM7 has the sound distortion. i tried with the three audio encodings- AMR-NB, AMR-WB, and AAC. Theoritically, AAC should record better sound, but thats not true in Optimus One. It records the same distorted sound, but with an unusual high bass. AMR-WB at 16,000Hz seems the best choice, with lot of details in audio, though slight distortion is still there. Well, the attatched file makes it record in amr-wb.
you need to rename the file you downloaded to media_profiles.xml, and restart ur device after putting it in /etc
feel free to suggest better encodings or a possible fix.
arnab321 said:
i had been using mik's CM7 (all versions), and the camcorder sound quality is horrible. there is a strange sound distortion and a distorted kinda background noise.
but theres a quite easy workaround for CM7 roms. you can change the audio encoding in /etc/media_profiles.xml
this is a workaround, not a fix. both the stock cam and cm7 cam records audio in AMR-NB, at 8000Hz. I dunno why only CM7 has the sound distortion. i tried with the three audio encodings- AMR-NB, AMR-WB, and AAC. Theoritically, AAC should record better sound, but thats not true in Optimus One. It records the same distorted sound, but with an unusual high bass. AMR-WB at 16,000Hz seems the best choice, with lot of details in audio, though slight distortion is still there. Well, the attatched file makes it record in amr-wb.
you need to rename the file you downloaded to media_profiles.xml, and restart ur device after putting it in /etc
feel free to suggest better encodings or a possible fix.
Click to expand...
Click to collapse
Use lgcamera app from the market... it can record better quality sound...
Sent from my LG-P500 using xda premium
Rockr172 said:
Use lgcamera app from the market... it can record better quality sound...
Sent from my LG-P500 using xda premium
Click to expand...
Click to collapse
It doesn't, unless you change the audio to amr-wb.
Sent from my LG-P500
Can someone please make a flashable zip/undo zip out of this? My phone's not writing to /etc even when mounted r/w... oddest thing.
Tested working for me on CM7.1 ThunderG rom with 2.6.32.42-franco.Kernel.v18 kernel. Is all the the below diff needed?
88a89,94
> <Audio codec="amrwb"
> bitRate="23050"
> sampleRate="16000"
> channels="1" />
>
> <!--
92a99,100
> -->
>
145,147c153,155
< <ImageEncoding quality="90" />
< <ImageEncoding quality="80" />
< <ImageEncoding quality="70" />
---
> <ImageEncoding quality="95" />
> <ImageEncoding quality="85" />
> <ImageEncoding quality="75" />
169c177
< minFrameWidth="176" maxFrameWidth="6400"
---
> minFrameWidth="176" maxFrameWidth="640"
175c183
< minFrameWidth="176" maxFrameWidth="6400"
---
> minFrameWidth="176" maxFrameWidth="640"
Click to expand...
Click to collapse

[Q] What is the average image size for the photos you take on your Android phone?

When I was on stock Xperia Gingerbread 2.3.4 on my ST17i, the average image file size I take is only playing around 300 to 600kb each However, after flashing the MiniCMSandwich Lite AOSP rom, the file sizes have been bumped to an average of 1.3mb. I want to know why? As far as I know, on both stock and MiniCMSandwich, I've set the resolution to the highest (5 megapixels).
Is it a matter of the camera apps? (Xperia camera and stock camera)
I'm also interested to know how big your average file sizes are for 5mp of images.
Thanks!
If the camera apps have tweaks or there are tweaks in the media_profiles.xml file (which can easily be done), then yes, files sizes can and will change. It will also depend on the device/hardware. My HTC Aria (with a 5mp camera) takes images with sizes from 700k - 1.3mb. My Acer Iconia Tab (also with a 5mp camera) takes images anywhere from 2.5mb - 3.9mb (pictures taken on the tab are much better than the phone).
Theonew said:
If the camera apps have tweaks or there are tweaks in the media_profiles.xml file (which can easily be done), then yes, files sizes can and will change. It will also depend on the device/hardware. My HTC Aria (with a 5mp camera) takes images with sizes from 700k - 1.3mb. My Acer Iconia Tab (also with a 5mp camera) takes images anywhere from 2.5mb - 3.9mb.
Click to expand...
Click to collapse
Exactly
Accidentally sent from my Google Nexus S
Theonew said:
If the camera apps have tweaks or there are tweaks in the media_profiles.xml file (which can easily be done), then yes, files sizes can and will change. It will also depend on the device/hardware. My HTC Aria (with a 5mp camera) takes images with sizes from 700k - 1.3mb. My Acer Iconia Tab (also with a 5mp camera) takes images anywhere from 2.5mb - 3.9mb (pictures taken on the tab are much better than the phone).
Click to expand...
Click to collapse
Since I can't possibly change hardware on my phone, I'm guessing it's the media_profiles.xml itself then?
EDIT:
Upon checking my media_profiles.xml, nothing seems to be related to taking pictures at all. They just had options for video and audio. :/
ShedoSurashu said:
Since I can't possibly change hardware on my phone, I'm guessing it's the media_profiles.xml itself then?
EDIT:
Upon checking my media_profiles.xml, nothing seems to be related to taking pictures at all. They just had options for video and audio. :/
Click to expand...
Click to collapse
Check again. That is where all info is stored for taking pictures.
Theonew said:
Check again. That is where all info is stored for taking pictures.
Click to expand...
Click to collapse
Here's my media_profiles.xml:
Code:
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2010 The Android Open Source Project
Copyright (C) 2010, 2011, 2012 Sony Ericsson Mobile Communications AB
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
NOTE: This file has been modified by Sony Ericsson Mobile Communications AB.
Modifications are licensed under the License.
-->
<!DOCTYPE MediaSettings [
<!ELEMENT MediaSettings (CamcorderProfiles,
EncoderOutputFileFormat+,
VideoEncoderCap+,
AudioEncoderCap+,
VideoDecoderCap,
AudioDecoderCap)>
<!ELEMENT CamcorderProfiles (EncoderProfile+, ImageEncoding+, ImageDecoding, Camera)>
<!ELEMENT EncoderProfile (Video, Audio)>
<!ATTLIST EncoderProfile quality (high|low) #REQUIRED>
<!ATTLIST EncoderProfile fileFormat (mp4|3gp) #REQUIRED>
<!ATTLIST EncoderProfile duration (30|60) #REQUIRED>
<!ATTLIST EncoderProfile cameraId (0|1) #REQUIRED>
<!ELEMENT Video EMPTY>
<!ATTLIST Video codec (h264|h263|m4v) #REQUIRED>
<!ATTLIST Video bitRate CDATA #REQUIRED>
<!ATTLIST Video width CDATA #REQUIRED>
<!ATTLIST Video height CDATA #REQUIRED>
<!ATTLIST Video frameRate CDATA #REQUIRED>
<!ELEMENT Audio EMPTY>
<!ATTLIST Audio codec (amrnb|amrwb|aac) #REQUIRED>
<!ATTLIST Audio bitRate CDATA #REQUIRED>
<!ATTLIST Audio sampleRate CDATA #REQUIRED>
<!ATTLIST Audio channels (1|2) #REQUIRED>
<!ELEMENT ImageEncoding EMPTY>
<!ATTLIST ImageEncoding quality (90|80|70|60|50|40) #REQUIRED>
<!ELEMENT ImageDecoding EMPTY>
<!ATTLIST ImageDecoding memCap CDATA #REQUIRED>
<!ELEMENT Camera EMPTY>
<!ATTLIST Camera previewFrameRate CDATA #REQUIRED>
<!ELEMENT EncoderOutputFileFormat EMPTY>
<!ATTLIST EncoderOutputFileFormat name (mp4|3gp) #REQUIRED>
<!ELEMENT VideoEncoderCap EMPTY>
<!ATTLIST VideoEncoderCap name (h264|h263|m4v|wmv) #REQUIRED>
<!ATTLIST VideoEncoderCap enabled (true|false) #REQUIRED>
<!ATTLIST VideoEncoderCap minBitRate CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap maxBitRate CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap minFrameWidth CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap maxFrameWidth CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap minFrameHeight CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap maxFrameHeight CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap minFrameRate CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap maxFrameRate CDATA #REQUIRED>
<!ELEMENT AudioEncoderCap EMPTY>
<!ATTLIST AudioEncoderCap name (amrnb|amrwb|aac|wma) #REQUIRED>
<!ATTLIST AudioEncoderCap enabled (true|false) #REQUIRED>
<!ATTLIST AudioEncoderCap minBitRate CDATA #REQUIRED>
<!ATTLIST AudioEncoderCap maxBitRate CDATA #REQUIRED>
<!ATTLIST AudioEncoderCap minSampleRate CDATA #REQUIRED>
<!ATTLIST AudioEncoderCap maxSampleRate CDATA #REQUIRED>
<!ATTLIST AudioEncoderCap minChannels (1|2) #REQUIRED>
<!ATTLIST AudioEncoderCap maxChannels (1|2) #REQUIRED>
<!ELEMENT VideoDecoderCap EMPTY>
<!ATTLIST VideoDecoderCap name (wmv) #REQUIRED>
<!ATTLIST VideoDecoderCap enabled (true|false) #REQUIRED>
<!ELEMENT AudioDecoderCap EMPTY>
<!ATTLIST AudioDecoderCap name (wma) #REQUIRED>
<!ATTLIST AudioDecoderCap enabled (true|false) #REQUIRED>
<!ELEMENT VideoEditorCap EMPTY>
<!ATTLIST VideoEditorCap maxInputFrameWidth CDATA #REQUIRED>
<!ATTLIST VideoEditorCap maxInputFrameHeight CDATA #REQUIRED>
<!ATTLIST VideoEditorCap maxOutputFrameWidth CDATA #REQUIRED>
<!ATTLIST VideoEditorCap maxOutputFrameHeight CDATA #REQUIRED>
<!ATTLIST VideoEditorCap maxPrefetchYUVFrames CDATA #REQUIRED>
<!ELEMENT ExportVideoProfile EMPTY>
<!ATTLIST ExportVideoProfile name (h264|h263|m4v) #REQUIRED>
<!ATTLIST ExportVideoProfile profile CDATA #REQUIRED>
<!ATTLIST ExportVideoProfile level CDATA #REQUIRED>
]>
<!--
This file is used to declare the multimedia profiles and capabilities
on an android-powered device.
-->
<MediaSettings>
<!-- Each camcorder profile defines a set of predefined configuration parameters -->
<CamcorderProfiles cameraId="0">
<!--
Profiles for the back camera
-->
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="6000000"
width="1280"
height="720"
frameRate="30" />
<Audio codec="aac"
bitRate="128000"
sampleRate="48000"
channels="2" />
</EncoderProfile>
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="4000000"
width="640"
height="480"
frameRate="30" />
<Audio codec="aac"
bitRate="128000"
sampleRate="48000"
channels="2" />
</EncoderProfile>
<EncoderProfile quality="qvga" fileFormat="3gp" duration="60">
<Video codec="h263"
bitRate="128000"
width="320"
height="240"
frameRate="15" />
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="qcif" fileFormat="3gp" duration="20">
<Video codec="h263"
bitRate="96000"
width="176"
height="144"
frameRate="15" />
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="6000000"
width="1280"
height="720"
frameRate="30" />
<!-- audio setting is ignored -->
<Audio codec="aac"
bitRate="128000"
sampleRate="48000"
channels="2" />
</EncoderProfile>
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="4000000"
width="640"
height="480"
frameRate="30" />
<!-- audio setting is ignored -->
<Audio codec="aac"
bitRate="128000"
sampleRate="48000"
channels="2" />
</EncoderProfile>
<EncoderProfile quality="timelapseqvga" fileFormat="3gp" duration="60">
<Video codec="h263"
bitRate="128000"
width="320"
height="240"
frameRate="15" />
<!-- audio setting is ignored -->
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapseqcif" fileFormat="3gp" duration="20">
<Video codec="h263"
bitRate="96000"
width="176"
height="144"
frameRate="15" />
<!-- audio setting is ignored -->
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<ImageEncoding quality="90" />
<ImageEncoding quality="80" />
<ImageEncoding quality="70" />
<ImageDecoding memCap="20000000" />
<Camera previewFrameRate="0" />
</CamcorderProfiles>
<CamcorderProfiles cameraId="1">
<!--
Profiles for the front camera
-->
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="4000000"
width="640"
height="480"
frameRate="30" />
<Audio codec="aac"
bitRate="128000"
sampleRate="48000"
channels="2" />
</EncoderProfile>
<EncoderProfile quality="qvga" fileFormat="3gp" duration="60">
<Video codec="h263"
bitRate="128000"
width="320"
height="240"
frameRate="15" />
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="qcif" fileFormat="3gp" duration="20">
<Video codec="h263"
bitRate="96000"
width="176"
height="144"
frameRate="15" />
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="4000000"
width="640"
height="480"
frameRate="30" />
<!-- audio setting is ignored -->
<Audio codec="aac"
bitRate="128000"
sampleRate="48000"
channels="2" />
</EncoderProfile>
<EncoderProfile quality="timelapseqvga" fileFormat="3gp" duration="60">
<Video codec="h263"
bitRate="128000"
width="320"
height="240"
frameRate="15" />
<!-- audio setting is ignored -->
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapseqcif" fileFormat="3gp" duration="20">
<Video codec="h263"
bitRate="96000"
width="176"
height="144"
frameRate="15" />
<!-- audio setting is ignored -->
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<ImageEncoding quality="90" />
<ImageEncoding quality="80" />
<ImageEncoding quality="70" />
<ImageDecoding memCap="20000000" />
<Camera previewFrameRate="0" />
</CamcorderProfiles>
<EncoderOutputFileFormat name="3gp" />
<EncoderOutputFileFormat name="mp4" />
<!--
If a codec is not enabled, it is invisible to the applications
In other words, the applications won't be able to use the codec
or query the capabilities of the codec at all if it is disabled
-->
<VideoEncoderCap name="h263" enabled="true"
minBitRate="96000" maxBitRate="420000"
minFrameWidth="176" maxFrameWidth="640"
minFrameHeight="144" maxFrameHeight="480"
minFrameRate="7" maxFrameRate="30" />
<VideoEncoderCap name="h264" enabled="true"
minBitRate="96000" maxBitRate="10000000"
minFrameWidth="176" maxFrameWidth="1280"
minFrameHeight="144" maxFrameHeight="720"
minFrameRate="7" maxFrameRate="30" />
<VideoEncoderCap name="m4v" enabled="true"
minBitRate="96000" maxBitRate="10000000"
minFrameWidth="176" maxFrameWidth="1280"
minFrameHeight="144" maxFrameHeight="720"
minFrameRate="7" maxFrameRate="30" />
<AudioEncoderCap name="amrnb" enabled="true"
minBitRate="5525" maxBitRate="12200"
minSampleRate="8000" maxSampleRate="8000"
minChannels="1" maxChannels="1" />
<AudioEncoderCap name="aac" enabled="true"
minBitRate="5525" maxBitRate="128000"
minSampleRate="8000" maxSampleRate="48000"
minChannels="1" maxChannels="1" />
<!--
FIXME:
We do not check decoder capabilities at present
At present, we only check whether windows media is visible
for TEST applications. For other applications, we do
not perform any checks at all.
-->
<VideoDecoderCap name="wmv" enabled="false"/>
<AudioDecoderCap name="wma" enabled="false"/>
</MediaSettings>
As far as I know, only the following are connected to images:
Code:
<ImageEncoding quality="90" />
<ImageEncoding quality="80" />
<ImageEncoding quality="70" />
<ImageDecoding memCap="20000000" />
But some threads seem to suggest that that is the default.
And that is correct. If you change the first 3 values to "100" and the "2" to an "8", you'll see quite a difference in sizes.
Theonew said:
And that is correct. If you change the first 3 values to "100" and the "2" to an "8", you'll see quite a difference in sizes.
Click to expand...
Click to collapse
I see. I'll try tweaking it a bit and see how it affects things. WIll update this post after.
UPDATE:
Changing the values from 90,80,70 to 100 all and replacing 20000000 with 80000000 didn't seem to do anything at all. And at some point I even thought it kinda degraded the image quality (camera is not able to focus clearly).
UPDATE 2:
I now tried setting it as:
60,50,40 with 20000000 and the image size went to a down low of around 780kb! And the quality doesn't seem to degrade at all. Any thoughts on this?
ShedoSurashu said:
I see. I'll try tweaking it a bit and see how it affects things. WIll update this post after.
UPDATE:
Changing the values from 90,80,70 to 100 all and replacing 20000000 with 80000000 didn't seem to do anything at all. And at some point I even thought it kinda degraded the image quality (camera is not able to focus clearly).
UPDATE 2:
I now tried setting it as:
60,50,40 with 20000000 and the image size went to a down low of around 780kb! And the quality doesn't seem to degrade at all. Any thoughts on this?
Click to expand...
Click to collapse
It should have been the other way around. Have you tried making edits to your build.prop relating to the camera?
i haven't edited build.prop in any way related to images yet, the only time i edited it was when i was trying to make Google Now work on ICS but i reverted that too shortly after
Sent from my stone using Tapatalk 2.

[ROM] RCentral v1 15/10/2013 4.2.2 BATTERY, SPEED AND 1080P xt910

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
First thanks to those who lowered their stock based RCentral.
Since some are fan of cm try to make a rom for them , is based on the latest stable v10.1.3 no errors exist in the CM page.
As everyone knows the only problem is that they filmed cm in FullHD and has no hdmi, reading some forums I resolve to film in 1080 with no problems ... utds now only remains to be made to use it and tell me they did not like or would like ...
*
*
v1:
eliminated all unnecessary applications cm
Bastard was incorporated in the installation zip volt
module was incorporated to film in full hd
all applications were added bike x (okay now and unlock google must be configured)
took his camera and added cm ics + camera to film in 1080
changes build.prop
nova launcher prime
install:
1 has to be root
2 install boot menu
3 enter the bootmenu
4 format system
May do the 3 wipes
Installing the ROM 6
7 Install the gaps
8 restart and wait
9 when setting turns and end up re-start
** wifi works well.
* Ensure they are selected in the bootmenu manager (in the system to be installed) options "Custom kernel (2nd boot)", "Custom kernel (Kexec)", "Insecure adb", the option "Custom init (2nd init ) "not marked to not give them reboots when connecting to the pc as usb.
link:
ROM
GAPS
COUNCILS : VERY IMPORTANT AND FOLLOW IF OR IF
INSTALL OR IF YES AND HIBERNATE GREENIFY APPLICATIONS donative and also very imporatente system
*
FULL HD YOUTUBE LIKE NEVER BEFORE SEEN :
open youtube > press the touch button that opens the options > advanced setting> tick the 3 options for HD settings and restart the youtube
***********************************************************************
******************************************************************enable developer mode ( the other points are made with this)
go to settings > about device > find where it says RCentral ROM and press 5 or 6 times followed leftover the name
*
MORE ANIMATION SPEED :
Settings> opc.desarrollo > turn > Window animation scale 0.5 > transition animation scale 0.5 > .5 animator length scale
*
PERFORMANCE
put 1000mhz processor helps the battery last much longer and do not miss fluides .
*
DOWNLOAD TRICKERS MOD AND PUT MAX 10000 MIN 300 MAX, SPEED AND ACTIVATE LOCK TO START (VERY IMPORTANT)
*
cleared using the camera to film ics + if or if ... the end of the video will throw error, but if they wait a few seconds and go to the video gallery will be saved correctly
SCREEN RAZR XT910 1780mAh battery​GRACIAS A Uncanfeeling POR 1080P
PERDONEN MI INGLES .... EMI RC ARGENTINA
help me to continue these projects
Thanks man
coming from verizon 98.72.16 using on XT910... can i use this ROM..?? which slot it will be suited..?? Thanks..
Does not record 1080P video !. stands in the camera app. does not work any more. Now the phone is frozen, reset, I did it.
---------- Post added at 10:18 PM ---------- Previous post was at 09:46 PM ----------
Code:
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2010 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE MediaSettings [
<!ELEMENT MediaSettings (CamcorderProfiles,
EncoderOutputFileFormat+,
VideoEncoderCap+,
AudioEncoderCap+,
VideoDecoderCap,
AudioDecoderCap)>
<!ELEMENT CamcorderProfiles (EncoderProfile+, ImageEncoding+, ImageDecoding, Camera)>
<!ELEMENT EncoderProfile (Video, Audio)>
<!ATTLIST EncoderProfile quality (timelapse1080p|timelapse720p|timelapse480p|timelapsehigh|timelapselow|1080p|720p|480p|qcif|high|low) #REQUIRED>
<!ATTLIST EncoderProfile fileFormat (mp4|3gp) #REQUIRED>
<!ATTLIST EncoderProfile duration (30|60) #REQUIRED>
<!ELEMENT Video EMPTY>
<!ATTLIST Video codec (h264|h263|m4v) #REQUIRED>
<!ATTLIST Video bitRate CDATA #REQUIRED>
<!ATTLIST Video width CDATA #REQUIRED>
<!ATTLIST Video height CDATA #REQUIRED>
<!ATTLIST Video frameRate CDATA #REQUIRED>
<!ELEMENT Audio EMPTY>
<!ATTLIST Audio codec (amrnb|amrwb|aac) #REQUIRED>
<!ATTLIST Audio bitRate CDATA #REQUIRED>
<!ATTLIST Audio sampleRate CDATA #REQUIRED>
<!ATTLIST Audio channels (1|2) #REQUIRED>
<!ELEMENT ImageEncoding EMPTY>
<!ATTLIST ImageEncoding quality (100|90|80|70|60|50) #REQUIRED>
<!ELEMENT ImageDecoding EMPTY>
<!ATTLIST ImageDecoding memCap CDATA #REQUIRED>
<!ELEMENT Camera EMPTY>
<!ATTLIST Camera previewFrameRate CDATA #REQUIRED>
<!ELEMENT EncoderOutputFileFormat EMPTY>
<!ATTLIST EncoderOutputFileFormat name (mp4|3gp) #REQUIRED>
<!ELEMENT VideoEncoderCap EMPTY>
<!ATTLIST VideoEncoderCap name (h264|h263|m4v|wmv) #REQUIRED>
<!ATTLIST VideoEncoderCap enabled (true|false) #REQUIRED>
<!ATTLIST VideoEncoderCap minBitRate CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap maxBitRate CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap minFrameWidth CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap maxFrameWidth CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap minFrameHeight CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap maxFrameHeight CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap minFrameRate CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap maxFrameRate CDATA #REQUIRED>
<!ELEMENT AudioEncoderCap EMPTY>
<!ATTLIST AudioEncoderCap name (amrnb|amrwb|aac|wma) #REQUIRED>
<!ATTLIST AudioEncoderCap enabled (true|false) #REQUIRED>
<!ATTLIST AudioEncoderCap minBitRate CDATA #REQUIRED>
<!ATTLIST AudioEncoderCap maxBitRate CDATA #REQUIRED>
<!ATTLIST AudioEncoderCap minSampleRate CDATA #REQUIRED>
<!ATTLIST AudioEncoderCap maxSampleRate CDATA #REQUIRED>
<!ATTLIST AudioEncoderCap minChannels (1|2) #REQUIRED>
<!ATTLIST AudioEncoderCap maxChannels (1|2) #REQUIRED>
<!ELEMENT VideoDecoderCap EMPTY>
<!ATTLIST VideoDecoderCap name (wmv) #REQUIRED>
<!ATTLIST VideoDecoderCap enabled (true|false) #REQUIRED>
<!ELEMENT AudioDecoderCap EMPTY>
<!ATTLIST AudioDecoderCap name (wma) #REQUIRED>
<!ATTLIST AudioDecoderCap enabled (true|false) #REQUIRED>
]>
<!--
This file is used to declare the multimedia profiles and capabilities
on an android-powered device.
-->
<MediaSettings>
<!-- Each camcorder profile defines a set of predefined configuration parameters -->
<!-- Back Camera -->
<CamcorderProfiles cameraId="0">
<EncoderProfile quality="low" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="11000000"
width="1280"
height="720"
frameRate="30" />
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="high" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="22000000"
width="1920"
height="1080"
frameRate="30" />
<Audio codec="aac"
bitRate="128000"
sampleRate="44100"
channels="2" />
</EncoderProfile>
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="3610000"
width="640"
height="480"
frameRate="30" />
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="22000000"
width="1280"
height="720"
frameRate="30" />
<Audio codec="aac"
bitRate="192000"
sampleRate="44100"
channels="2" />
</EncoderProfile>
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="30000000"
width="1920"
height="1080"
frameRate="30" />
<Audio codec="aac"
bitRate="192000"
sampleRate="44100"
channels="2" />
</EncoderProfile>
<EncoderProfile quality="timelapselow" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="1610000"
width="176"
height="144"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapsehigh" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="14000000"
width="1920"
height="1080"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="1610000"
width="176"
height="144"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="1536000"
width="352"
height="288"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="1610000"
width="640"
height="480"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="14000000"
width="1920"
height="1080"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<ImageEncoding quality="100" />
<ImageEncoding quality="90" />
<ImageEncoding quality="80" />
<ImageDecoding memCap="20000000" />
</CamcorderProfiles>
<!-- Front Camera -->
<CamcorderProfiles cameraId="1">
<EncoderProfile quality="low" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="1610000"
width="640"
height="480"
frameRate="30" />
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="high" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="14000000"
width="1280"
height="720"
frameRate="30" />
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="3610000"
width="640"
height="480"
frameRate="30" />
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="720p" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="14000000"
width="1280"
height="720"
frameRate="30" />
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapselow" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="1610000"
width="176"
height="144"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapsehigh" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="3078000"
width="640"
height="480"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="1610000"
width="176"
height="144"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="1536000"
width="352"
height="288"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="3078000"
width="640"
height="480"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<ImageEncoding quality="100" />
<ImageEncoding quality="90" />
<ImageEncoding quality="80" />
<ImageDecoding memCap="20000000" />
</CamcorderProfiles>
<EncoderOutputFileFormat name="mp4" />
<!--
If a codec is not enabled, it is invisible to the applications
In other words, the applications won't be able to use the codec
or query the capabilities of the codec at all if it is disabled
-->
<VideoEncoderCap name="h264" enabled="true"
minBitRate="640000" maxBitRate="25000000"
minFrameWidth="176" maxFrameWidth="1920"
minFrameHeight="144" maxFrameHeight="1088"
minFrameRate="20" maxFrameRate="60" />
<VideoEncoderCap name="h263" enabled="true"
minBitRate="64000" maxBitRate="8000000"
minFrameWidth="176" maxFrameWidth="704"
minFrameHeight="144" maxFrameHeight="576"
minFrameRate="1" maxFrameRate="30" />
<VideoEncoderCap name="m4v" enabled="true"
minBitRate="64000" maxBitRate="10000000"
minFrameWidth="176" maxFrameWidth="1280"
minFrameHeight="144" maxFrameHeight="720"
minFrameRate="1" maxFrameRate="30" />
<AudioEncoderCap name="aac" enabled="true"
minBitRate="8000" maxBitRate="96000"
minSampleRate="8000" maxSampleRate="48000"
minChannels="1" maxChannels="1" />
<AudioEncoderCap name="amrwb" enabled="true"
minBitRate="6600" maxBitRate="23050"
minSampleRate="16000" maxSampleRate="16000"
minChannels="1" maxChannels="1" />
<AudioEncoderCap name="amrnb" enabled="true"
minBitRate="4750" maxBitRate="12200"
minSampleRate="8000" maxSampleRate="8000"
minChannels="1" maxChannels="1" />
<VideoDecoderCap name="wmv" enabled="false"/>
<AudioDecoderCap name="wma" enabled="false"/>
</MediaSettings>
By.TRabZonLu™ said:
Does not record 1080P video !. stands in the camera app. does not work any more. Now the phone is frozen, reset, I did it.
---------- Post added at 10:18 PM ---------- Previous post was at 09:46 PM ----------
Code:
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2010 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE MediaSettings [
<!ELEMENT MediaSettings (CamcorderProfiles,
EncoderOutputFileFormat+,
VideoEncoderCap+,
AudioEncoderCap+,
VideoDecoderCap,
AudioDecoderCap)>
<!ELEMENT CamcorderProfiles (EncoderProfile+, ImageEncoding+, ImageDecoding, Camera)>
<!ELEMENT EncoderProfile (Video, Audio)>
<!ATTLIST EncoderProfile quality (timelapse1080p|timelapse720p|timelapse480p|timelapsehigh|timelapselow|1080p|720p|480p|qcif|high|low) #REQUIRED>
<!ATTLIST EncoderProfile fileFormat (mp4|3gp) #REQUIRED>
<!ATTLIST EncoderProfile duration (30|60) #REQUIRED>
<!ELEMENT Video EMPTY>
<!ATTLIST Video codec (h264|h263|m4v) #REQUIRED>
<!ATTLIST Video bitRate CDATA #REQUIRED>
<!ATTLIST Video width CDATA #REQUIRED>
<!ATTLIST Video height CDATA #REQUIRED>
<!ATTLIST Video frameRate CDATA #REQUIRED>
<!ELEMENT Audio EMPTY>
<!ATTLIST Audio codec (amrnb|amrwb|aac) #REQUIRED>
<!ATTLIST Audio bitRate CDATA #REQUIRED>
<!ATTLIST Audio sampleRate CDATA #REQUIRED>
<!ATTLIST Audio channels (1|2) #REQUIRED>
<!ELEMENT ImageEncoding EMPTY>
<!ATTLIST ImageEncoding quality (100|90|80|70|60|50) #REQUIRED>
<!ELEMENT ImageDecoding EMPTY>
<!ATTLIST ImageDecoding memCap CDATA #REQUIRED>
<!ELEMENT Camera EMPTY>
<!ATTLIST Camera previewFrameRate CDATA #REQUIRED>
<!ELEMENT EncoderOutputFileFormat EMPTY>
<!ATTLIST EncoderOutputFileFormat name (mp4|3gp) #REQUIRED>
<!ELEMENT VideoEncoderCap EMPTY>
<!ATTLIST VideoEncoderCap name (h264|h263|m4v|wmv) #REQUIRED>
<!ATTLIST VideoEncoderCap enabled (true|false) #REQUIRED>
<!ATTLIST VideoEncoderCap minBitRate CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap maxBitRate CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap minFrameWidth CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap maxFrameWidth CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap minFrameHeight CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap maxFrameHeight CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap minFrameRate CDATA #REQUIRED>
<!ATTLIST VideoEncoderCap maxFrameRate CDATA #REQUIRED>
<!ELEMENT AudioEncoderCap EMPTY>
<!ATTLIST AudioEncoderCap name (amrnb|amrwb|aac|wma) #REQUIRED>
<!ATTLIST AudioEncoderCap enabled (true|false) #REQUIRED>
<!ATTLIST AudioEncoderCap minBitRate CDATA #REQUIRED>
<!ATTLIST AudioEncoderCap maxBitRate CDATA #REQUIRED>
<!ATTLIST AudioEncoderCap minSampleRate CDATA #REQUIRED>
<!ATTLIST AudioEncoderCap maxSampleRate CDATA #REQUIRED>
<!ATTLIST AudioEncoderCap minChannels (1|2) #REQUIRED>
<!ATTLIST AudioEncoderCap maxChannels (1|2) #REQUIRED>
<!ELEMENT VideoDecoderCap EMPTY>
<!ATTLIST VideoDecoderCap name (wmv) #REQUIRED>
<!ATTLIST VideoDecoderCap enabled (true|false) #REQUIRED>
<!ELEMENT AudioDecoderCap EMPTY>
<!ATTLIST AudioDecoderCap name (wma) #REQUIRED>
<!ATTLIST AudioDecoderCap enabled (true|false) #REQUIRED>
]>
<!--
This file is used to declare the multimedia profiles and capabilities
on an android-powered device.
-->
<MediaSettings>
<!-- Each camcorder profile defines a set of predefined configuration parameters -->
<!-- Back Camera -->
<CamcorderProfiles cameraId="0">
<EncoderProfile quality="low" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="11000000"
width="1280"
height="720"
frameRate="30" />
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="high" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="22000000"
width="1920"
height="1080"
frameRate="30" />
<Audio codec="aac"
bitRate="128000"
sampleRate="44100"
channels="2" />
</EncoderProfile>
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="3610000"
width="640"
height="480"
frameRate="30" />
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="22000000"
width="1280"
height="720"
frameRate="30" />
<Audio codec="aac"
bitRate="192000"
sampleRate="44100"
channels="2" />
</EncoderProfile>
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="30000000"
width="1920"
height="1080"
frameRate="30" />
<Audio codec="aac"
bitRate="192000"
sampleRate="44100"
channels="2" />
</EncoderProfile>
<EncoderProfile quality="timelapselow" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="1610000"
width="176"
height="144"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapsehigh" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="14000000"
width="1920"
height="1080"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="1610000"
width="176"
height="144"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="1536000"
width="352"
height="288"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="1610000"
width="640"
height="480"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="14000000"
width="1920"
height="1080"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<ImageEncoding quality="100" />
<ImageEncoding quality="90" />
<ImageEncoding quality="80" />
<ImageDecoding memCap="20000000" />
</CamcorderProfiles>
<!-- Front Camera -->
<CamcorderProfiles cameraId="1">
<EncoderProfile quality="low" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="1610000"
width="640"
height="480"
frameRate="30" />
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="high" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="14000000"
width="1280"
height="720"
frameRate="30" />
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
<Video codec="h264"
bitRate="3610000"
width="640"
height="480"
frameRate="30" />
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="720p" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="14000000"
width="1280"
height="720"
frameRate="30" />
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapselow" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="1610000"
width="176"
height="144"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapsehigh" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="3078000"
width="640"
height="480"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="1610000"
width="176"
height="144"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="1536000"
width="352"
height="288"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="amrnb"
bitRate="12200"
sampleRate="8000"
channels="1" />
</EncoderProfile>
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="3078000"
width="640"
height="480"
frameRate="30" />
<!--
The Audio part of the profile will not be used since time lapse mode
does not capture audio
-->
<Audio codec="aac"
bitRate="62900"
sampleRate="44100"
channels="1" />
</EncoderProfile>
<ImageEncoding quality="100" />
<ImageEncoding quality="90" />
<ImageEncoding quality="80" />
<ImageDecoding memCap="20000000" />
</CamcorderProfiles>
<EncoderOutputFileFormat name="mp4" />
<!--
If a codec is not enabled, it is invisible to the applications
In other words, the applications won't be able to use the codec
or query the capabilities of the codec at all if it is disabled
-->
<VideoEncoderCap name="h264" enabled="true"
minBitRate="640000" maxBitRate="25000000"
minFrameWidth="176" maxFrameWidth="1920"
minFrameHeight="144" maxFrameHeight="1088"
minFrameRate="20" maxFrameRate="60" />
<VideoEncoderCap name="h263" enabled="true"
minBitRate="64000" maxBitRate="8000000"
minFrameWidth="176" maxFrameWidth="704"
minFrameHeight="144" maxFrameHeight="576"
minFrameRate="1" maxFrameRate="30" />
<VideoEncoderCap name="m4v" enabled="true"
minBitRate="64000" maxBitRate="10000000"
minFrameWidth="176" maxFrameWidth="1280"
minFrameHeight="144" maxFrameHeight="720"
minFrameRate="1" maxFrameRate="30" />
<AudioEncoderCap name="aac" enabled="true"
minBitRate="8000" maxBitRate="96000"
minSampleRate="8000" maxSampleRate="48000"
minChannels="1" maxChannels="1" />
<AudioEncoderCap name="amrwb" enabled="true"
minBitRate="6600" maxBitRate="23050"
minSampleRate="16000" maxSampleRate="16000"
minChannels="1" maxChannels="1" />
<AudioEncoderCap name="amrnb" enabled="true"
minBitRate="4750" maxBitRate="12200"
minSampleRate="8000" maxSampleRate="8000"
minChannels="1" maxChannels="1" />
<VideoDecoderCap name="wmv" enabled="false"/>
<AudioDecoderCap name="wma" enabled="false"/>
</MediaSettings>
Click to expand...
Click to collapse
when shooting in full hd. This tested by several users on another website Grupoandroid and facebook group that developed. We used the xda media_profiles risen.
I recommend you install it again!
brothers entered the phone freezes again after recording video, the camera does not work with the program.
Audio problems
Hey guys, thanks for the rom.It runs pretty fast.And it's stable.
But, I;m having an issue with the audio.When I try to set the ringtone it freezes and restarts.When I manage to set the ringtone,It only works for a short period of time, and when the phone should ring, It doesn't, only vibrates or it rings a random ringtone.
This bug was also present in early versions of android 4.1 roms.
Am I the only one with this bug?Any ideas?I did a clean install on slot 3
Thaanksssssss
Oh, I am thanked without knowing that .....
Thank you man for thiis awsome work...
I wished I could use it.. but I'm feeling happy now whit the 4.3.1 PACman Roms...
And thank you again...
And Please try to put a link to the lastest PA Google Apps for Android 4.2.2... To people could find it easly...
and keep going on this way... and the ROM Seems great to me from the replies of those who used it...
Thx for sharing the rom here!
How does this rom work for you guys?
Please add links to the Rom- and Kernel-Sources to the OP (forum rules) -- if this is a kexec rom! Not sure about this...
dtrail1 said:
Thx for sharing the rom here!
How does this rom work for you guys?
Please add links to the Rom- and Kernel-Sources to the OP (forum rules) -- if this is a kexec rom! Not sure about this...
Click to expand...
Click to collapse
is based on cm10.1.3 think it has the link order. thanks to those who trusted and tested!
emilakd said:
is based on cm10.1.3 think it has the link order. thanks to those who trusted and tested!
Click to expand...
Click to collapse
In this case it's a Kexec Rom and you have to add the links to the sources, especially the kernel source to the OP (as you can read in the forums rules)
I am wondering about 1080p video recording and why it's stated as stable in this rom - I guess the media_profiles.xml has been edited to enable HD resolution. But how do/did you solve the crashing/freezing issue?
dtrail1 said:
In this case it's a Kexec Rom and you have to add the links to the sources, especially the kernel source to the OP (as you can read in the forums rules)
I am wondering about 1080p video recording and why it's stated as stable in this rom - I guess the media_profiles.xml has been edited to enable HD resolution. But how do/did you solve the crashing/freezing issue?
Click to expand...
Click to collapse
After one video recording once the, camera freezes the program. does not work any more.
I tried this rom and it works just fine but, I thought nova launcher prime was a premium app (have to pay for it) so according to xda rules it should not be posted.
Sent from my XT910 using XDA Premium 4 mobile app
By.TRabZonLu™ said:
After one video recording once the, camera freezes the program. does not work any more.
Click to expand...
Click to collapse
That's what I mean - this Rom has just the HD profile enabled, just similar to my method I used once to enabel 720p recording. Due to Motorola's closed-source ducati binary we cannot just modify its driver to fix it. We can only make a whole new kernel with version 3.0.31 or 3.0.88 which is the most highest supported version by the ducati firmware - and this is currently in development by STS guys, but not sure if they will finish it...
any update 4.3 or 4.4

Categories

Resources