Update recommended bitrate for each EncoderProfile from P20
Bug: 185145849 Test: Normal/Slowmotion recording Test: atest CtsMediaTestCases:CamcorderProfileTest Change-Id: Ie3650b7e14fb9d88af782255b5458d78ac49efe8
This commit is contained in:
parent
cb7d8ddca3
commit
72ae1114d5
4 changed files with 2196 additions and 380 deletions
|
@ -45,7 +45,7 @@
|
||||||
<!ELEMENT EncoderOutputFileFormat EMPTY>
|
<!ELEMENT EncoderOutputFileFormat EMPTY>
|
||||||
<!ATTLIST EncoderOutputFileFormat name (mp4|3gp) #REQUIRED>
|
<!ATTLIST EncoderOutputFileFormat name (mp4|3gp) #REQUIRED>
|
||||||
<!ELEMENT VideoEncoderCap EMPTY>
|
<!ELEMENT VideoEncoderCap EMPTY>
|
||||||
<!ATTLIST VideoEncoderCap name (h264|h263|m4v|wmv) #REQUIRED>
|
<!ATTLIST VideoEncoderCap name (hevc|h264|h263|m4v|wmv) #REQUIRED>
|
||||||
<!ATTLIST VideoEncoderCap enabled (true|false) #REQUIRED>
|
<!ATTLIST VideoEncoderCap enabled (true|false) #REQUIRED>
|
||||||
<!ATTLIST VideoEncoderCap minBitRate CDATA #REQUIRED>
|
<!ATTLIST VideoEncoderCap minBitRate CDATA #REQUIRED>
|
||||||
<!ATTLIST VideoEncoderCap maxBitRate CDATA #REQUIRED>
|
<!ATTLIST VideoEncoderCap maxBitRate CDATA #REQUIRED>
|
||||||
|
@ -81,59 +81,98 @@
|
||||||
|
|
||||||
<EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="72000000"
|
||||||
width="3840"
|
width="3840"
|
||||||
height="2160"
|
height="2160"
|
||||||
frameRate="60" />
|
frameRate="60" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="33000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="60" />
|
frameRate="60" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="cif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="512000"
|
||||||
|
width="320"
|
||||||
|
height="240"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="128000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="48000000"
|
||||||
width="3840"
|
width="3840"
|
||||||
height="2160"
|
height="2160"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -141,13 +180,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="22000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -155,13 +194,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -169,13 +208,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -183,13 +222,69 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="192000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="highspeedlow" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="72000000"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
frameRate="240" />
|
||||||
|
|
||||||
|
<!-- audio setting is ignored -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="highspeedhigh" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="72000000"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
frameRate="240" />
|
||||||
|
|
||||||
|
<!-- audio setting is ignored -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="highspeed1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="highspeed1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="42000000"
|
bitRate="72000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="240" />
|
frameRate="240" />
|
||||||
|
@ -212,46 +307,85 @@
|
||||||
|
|
||||||
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="22000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="cif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="512000"
|
||||||
|
width="320"
|
||||||
|
height="240"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="128000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="22000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -259,13 +393,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -273,13 +407,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -287,7 +421,35 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="192000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
|
@ -302,59 +464,98 @@
|
||||||
|
|
||||||
<EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="72000000"
|
||||||
width="3840"
|
width="3840"
|
||||||
height="2160"
|
height="2160"
|
||||||
frameRate="60" />
|
frameRate="60" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="33000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="60" />
|
frameRate="60" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="cif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="512000"
|
||||||
|
width="320"
|
||||||
|
height="240"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="128000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="48000000"
|
||||||
width="3840"
|
width="3840"
|
||||||
height="2160"
|
height="2160"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -362,13 +563,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="22000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -376,13 +577,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -390,13 +591,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -404,7 +605,35 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="192000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
|
@ -419,59 +648,98 @@
|
||||||
|
|
||||||
<EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="72000000"
|
||||||
width="3840"
|
width="3840"
|
||||||
height="2160"
|
height="2160"
|
||||||
frameRate="60" />
|
frameRate="60" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="33000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="60" />
|
frameRate="60" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="cif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="512000"
|
||||||
|
width="320"
|
||||||
|
height="240"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="128000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="48000000"
|
||||||
width="3840"
|
width="3840"
|
||||||
height="2160"
|
height="2160"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -479,13 +747,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="22000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -493,13 +761,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -507,13 +775,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -521,7 +789,35 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="192000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
|
@ -536,59 +832,98 @@
|
||||||
|
|
||||||
<EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="48000000"
|
||||||
width="3840"
|
width="3840"
|
||||||
height="2160"
|
height="2160"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="22000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="cif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="512000"
|
||||||
|
width="320"
|
||||||
|
height="240"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="128000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="48000000"
|
||||||
width="3840"
|
width="3840"
|
||||||
height="2160"
|
height="2160"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -596,13 +931,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="22000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -610,13 +945,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -624,13 +959,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -638,7 +973,35 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="192000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
|
@ -662,8 +1025,14 @@
|
||||||
FIXME : we only check Mpeg4 encorder cap and other codec doesn't check
|
FIXME : we only check Mpeg4 encorder cap and other codec doesn't check
|
||||||
codec cap
|
codec cap
|
||||||
-->
|
-->
|
||||||
|
<VideoEncoderCap name="hevc" enabled="true"
|
||||||
|
minBitRate="64000" maxBitRate="100000000"
|
||||||
|
minFrameWidth="128" maxFrameWidth="3840"
|
||||||
|
minFrameHeight="96" maxFrameHeight="2160"
|
||||||
|
minFrameRate="15" maxFrameRate="60" />
|
||||||
|
|
||||||
<VideoEncoderCap name="h264" enabled="true"
|
<VideoEncoderCap name="h264" enabled="true"
|
||||||
minBitRate="64000" maxBitRate="12000000"
|
minBitRate="64000" maxBitRate="100000000"
|
||||||
minFrameWidth="128" maxFrameWidth="3840"
|
minFrameWidth="128" maxFrameWidth="3840"
|
||||||
minFrameHeight="96" maxFrameHeight="2160"
|
minFrameHeight="96" maxFrameHeight="2160"
|
||||||
minFrameRate="15" maxFrameRate="60" />
|
minFrameRate="15" maxFrameRate="60" />
|
||||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -45,7 +45,7 @@
|
||||||
<!ELEMENT EncoderOutputFileFormat EMPTY>
|
<!ELEMENT EncoderOutputFileFormat EMPTY>
|
||||||
<!ATTLIST EncoderOutputFileFormat name (mp4|3gp) #REQUIRED>
|
<!ATTLIST EncoderOutputFileFormat name (mp4|3gp) #REQUIRED>
|
||||||
<!ELEMENT VideoEncoderCap EMPTY>
|
<!ELEMENT VideoEncoderCap EMPTY>
|
||||||
<!ATTLIST VideoEncoderCap name (h264|h263|m4v|wmv) #REQUIRED>
|
<!ATTLIST VideoEncoderCap name (hevc|h264|h263|m4v|wmv) #REQUIRED>
|
||||||
<!ATTLIST VideoEncoderCap enabled (true|false) #REQUIRED>
|
<!ATTLIST VideoEncoderCap enabled (true|false) #REQUIRED>
|
||||||
<!ATTLIST VideoEncoderCap minBitRate CDATA #REQUIRED>
|
<!ATTLIST VideoEncoderCap minBitRate CDATA #REQUIRED>
|
||||||
<!ATTLIST VideoEncoderCap maxBitRate CDATA #REQUIRED>
|
<!ATTLIST VideoEncoderCap maxBitRate CDATA #REQUIRED>
|
||||||
|
@ -81,59 +81,98 @@
|
||||||
|
|
||||||
<EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="72000000"
|
||||||
width="3840"
|
width="3840"
|
||||||
height="2160"
|
height="2160"
|
||||||
frameRate="60" />
|
frameRate="60" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="33000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="60" />
|
frameRate="60" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="cif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="512000"
|
||||||
|
width="320"
|
||||||
|
height="240"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="128000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="48000000"
|
||||||
width="3840"
|
width="3840"
|
||||||
height="2160"
|
height="2160"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -141,13 +180,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="22000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -155,13 +194,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -169,13 +208,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -183,13 +222,69 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="192000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="highspeedlow" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="72000000"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
frameRate="240" />
|
||||||
|
|
||||||
|
<!-- audio setting is ignored -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="highspeedhigh" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="72000000"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
frameRate="240" />
|
||||||
|
|
||||||
|
<!-- audio setting is ignored -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="highspeed1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="highspeed1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="42000000"
|
bitRate="72000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="240" />
|
frameRate="240" />
|
||||||
|
@ -212,46 +307,85 @@
|
||||||
|
|
||||||
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="22000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="cif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="512000"
|
||||||
|
width="320"
|
||||||
|
height="240"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="128000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="48000000"
|
||||||
width="3840"
|
width="3840"
|
||||||
height="2160"
|
height="2160"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -259,13 +393,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="22000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -273,13 +407,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -287,13 +421,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -301,7 +435,63 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="192000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="highspeedlow" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="42000000"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
frameRate="120" />
|
||||||
|
|
||||||
|
<!-- audio setting is ignored -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="highspeedhigh" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="42000000"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
frameRate="120" />
|
||||||
|
|
||||||
|
<!-- audio setting is ignored -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
|
@ -330,59 +520,98 @@
|
||||||
|
|
||||||
<EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="72000000"
|
||||||
width="3840"
|
width="3840"
|
||||||
height="2160"
|
height="2160"
|
||||||
frameRate="60" />
|
frameRate="60" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="33000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="60" />
|
frameRate="60" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="cif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="512000"
|
||||||
|
width="320"
|
||||||
|
height="240"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="128000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="48000000"
|
||||||
width="3840"
|
width="3840"
|
||||||
height="2160"
|
height="2160"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -390,13 +619,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="22000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -404,13 +633,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -418,13 +647,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -432,13 +661,69 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="192000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="highspeedlow" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="72000000"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
frameRate="240" />
|
||||||
|
|
||||||
|
<!-- audio setting is ignored -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="highspeedhigh" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="72000000"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
frameRate="240" />
|
||||||
|
|
||||||
|
<!-- audio setting is ignored -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="highspeed1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="highspeed1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="42000000"
|
bitRate="72000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="240" />
|
frameRate="240" />
|
||||||
|
@ -461,46 +746,85 @@
|
||||||
|
|
||||||
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="22000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="cif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="512000"
|
||||||
|
width="320"
|
||||||
|
height="240"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="128000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="12000000"
|
bitRate="22000000"
|
||||||
width="1920"
|
width="1920"
|
||||||
height="1080"
|
height="1080"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -508,13 +832,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="8000000"
|
bitRate="12000000"
|
||||||
width="1280"
|
width="1280"
|
||||||
height="720"
|
height="720"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -522,13 +846,13 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
<EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
|
||||||
<Video codec="h264"
|
<Video codec="h264"
|
||||||
bitRate="3000000"
|
bitRate="6000000"
|
||||||
width="720"
|
width="720"
|
||||||
height="480"
|
height="480"
|
||||||
frameRate="30" />
|
frameRate="30" />
|
||||||
|
@ -536,7 +860,35 @@
|
||||||
<!-- Audio settings are not used for timealpse video recording -->
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
<Audio codec="aac"
|
<Audio codec="aac"
|
||||||
bitRate="96000"
|
bitRate="96000"
|
||||||
sampleRate="16000"
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="1200000"
|
||||||
|
width="352"
|
||||||
|
height="288"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="aac"
|
||||||
|
bitRate="96000"
|
||||||
|
sampleRate="48000"
|
||||||
|
channels="1" />
|
||||||
|
</EncoderProfile>
|
||||||
|
|
||||||
|
<EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
|
||||||
|
<Video codec="h264"
|
||||||
|
bitRate="192000"
|
||||||
|
width="176"
|
||||||
|
height="144"
|
||||||
|
frameRate="30" />
|
||||||
|
|
||||||
|
<!-- Audio settings are not used for timealpse video recording -->
|
||||||
|
<Audio codec="amrnb"
|
||||||
|
bitRate="12200"
|
||||||
|
sampleRate="8000"
|
||||||
channels="1" />
|
channels="1" />
|
||||||
</EncoderProfile>
|
</EncoderProfile>
|
||||||
|
|
||||||
|
@ -560,8 +912,14 @@
|
||||||
FIXME : we only check Mpeg4 encorder cap and other codec doesn't check
|
FIXME : we only check Mpeg4 encorder cap and other codec doesn't check
|
||||||
codec cap
|
codec cap
|
||||||
-->
|
-->
|
||||||
|
<VideoEncoderCap name="hevc" enabled="true"
|
||||||
|
minBitRate="64000" maxBitRate="100000000"
|
||||||
|
minFrameWidth="128" maxFrameWidth="3840"
|
||||||
|
minFrameHeight="96" maxFrameHeight="2160"
|
||||||
|
minFrameRate="15" maxFrameRate="60" />
|
||||||
|
|
||||||
<VideoEncoderCap name="h264" enabled="true"
|
<VideoEncoderCap name="h264" enabled="true"
|
||||||
minBitRate="64000" maxBitRate="12000000"
|
minBitRate="64000" maxBitRate="100000000"
|
||||||
minFrameWidth="128" maxFrameWidth="3840"
|
minFrameWidth="128" maxFrameWidth="3840"
|
||||||
minFrameHeight="96" maxFrameHeight="2160"
|
minFrameHeight="96" maxFrameHeight="2160"
|
||||||
minFrameRate="15" maxFrameRate="60" />
|
minFrameRate="15" maxFrameRate="60" />
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue