click: media_profile: Save AAC stream as stereo, and increase video bitrate
Solves an issue where certain media players only play first few seconds of the audio, due to not properly handling single channel AAC audio. Videos taken on the phone, that are uploaded to YouTube also suffers from this issue. Change-Id: Ia9115a6d2cec419cc4d1d55ba876377dabcb91e3
This commit is contained in:
parent
5954c1463d
commit
6ce104a582
@ -81,7 +81,7 @@
|
||||
|
||||
<EncoderProfile quality="high" fileFormat="3gp" duration="60">
|
||||
<Video codec="h263"
|
||||
bitRate="360000"
|
||||
bitRate="720000"
|
||||
width="352"
|
||||
height="288"
|
||||
frameRate="20" />
|
||||
@ -89,7 +89,7 @@
|
||||
<Audio codec="aac"
|
||||
bitRate="64000"
|
||||
sampleRate="16000"
|
||||
channels="1" />
|
||||
channels="2" />
|
||||
</EncoderProfile>
|
||||
|
||||
<EncoderProfile quality="low" fileFormat="3gp" duration="30">
|
||||
@ -128,7 +128,7 @@
|
||||
minFrameRate="1" maxFrameRate="30" />
|
||||
|
||||
<VideoEncoderCap name="h263" enabled="true"
|
||||
minBitRate="64000" maxBitRate="420000"
|
||||
minBitRate="64000" maxBitRate="720000"
|
||||
minFrameWidth="176" maxFrameWidth="352"
|
||||
minFrameHeight="144" maxFrameHeight="288"
|
||||
minFrameRate="1" maxFrameRate="30" />
|
||||
@ -142,7 +142,7 @@
|
||||
<AudioEncoderCap name="aac" enabled="true"
|
||||
minBitRate="8192" maxBitRate="96000"
|
||||
minSampleRate="8000" maxSampleRate="16000"
|
||||
minChannels="1" maxChannels="1" />
|
||||
minChannels="1" maxChannels="2" />
|
||||
|
||||
<AudioEncoderCap name="amrwb" enabled="true"
|
||||
minBitRate="6600" maxBitRate="23050"
|
||||
|
Loading…
Reference in New Issue
Block a user