Quote:
Originally Posted by jblah
hmm...i read that it was merged with cm nightly somewhere but..for some reason it was still recording at 720p for HD (30m) until i installed the files from the first post. am i doing something wrong or is there is a setting somewhere that I need to set?
|
it is very odd that you get 720p for HD.
try to "adb pull /system/etc/media_profiles.xml ." or use text editor to look at that file.
you should find (around line 82)
<EncoderProfile quality="hd" fileFormat="mp4" duration="30">
<Video codec="h264"
bitRate="12000000"
width="1920"
height="1088"
frameRate="30" />
<Audio codec="aac"
bitRate="128000"
sampleRate="44100"
channels="2" />
</EncoderProfile>
that is your HD setting (1920x1088@30fps,12Mbps)
if you find something similar, then maybe that setting is not available for some reason, and app is downgrading to the next available (720p?)
|