1<?xml version="1.0" encoding="utf-8" ?> 2<!-- Copyright (C) 2022 Huawei Device Co., Ltd. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 Itemations under the License. 15--> 16<RecorderConfigurations> 17 <RecorderProfiles> 18 <CameraRecorder cameraId="0"> 19 <ProfileSettings quality="low" format="mp4" duration="30"> 20 <Video codecMime="video/mp4v-es" 21 bitrate="192000" 22 width="176" 23 height="144" 24 frameRate="30"/> 25 26 <Audio codecMime="audio/mp4a-latm" 27 bitrate="96000" 28 sampleRate="48000" 29 channels="2"/> 30 </ProfileSettings> 31 32 <ProfileSettings quality="high" format="mp4" duration="30"> 33 <Video codecMime="video/mp4v-es" 34 bitrate="17000000" 35 width="1920" 36 height="1080" 37 frameRate="30"/> 38 39 <Audio codecMime="audio/mp4a-latm" 40 bitrate="192000" 41 sampleRate="48000" 42 channels="2"/> 43 </ProfileSettings> 44 45 <ProfileSettings quality="qcif" format="mp4" duration="30"> 46 <Video codecMime="video/mp4v-es" 47 bitrate="192000" 48 width="176" 49 height="144" 50 frameRate="30"/> 51 52 <Audio codecMime="audio/mp4a-latm" 53 bitrate="96000" 54 sampleRate="48000" 55 channels="2"/> 56 </ProfileSettings> 57 58 <ProfileSettings quality="qvga" format="mp4" duration="30"> 59 <Video codecMime="video/mp4v-es" 60 bitrate="1200000" 61 width="320" 62 height="240" 63 frameRate="30"/> 64 65 <Audio codecMime="audio/mp4a-latm" 66 bitrate="96000" 67 sampleRate="48000" 68 channels="2"/> 69 </ProfileSettings> 70 71 <ProfileSettings quality="cif" format="mp4" duration="30"> 72 <Video codecMime="video/mp4v-es" 73 bitrate="1536000" 74 width="352" 75 height="288" 76 frameRate="30"/> 77 78 <Audio codecMime="audio/mp4a-latm" 79 bitrate="96000" 80 sampleRate="48000" 81 channels="2"/> 82 </ProfileSettings> 83 84 <ProfileSettings quality="480p" format="mp4" duration="30"> 85 <Video codecMime="video/mp4v-es" 86 bitrate="5000000" 87 width="640" 88 height="480" 89 frameRate="30"/> 90 91 <Audio codecMime="audio/mp4a-latm" 92 bitrate="96000" 93 sampleRate="48000" 94 channels="2"/> 95 </ProfileSettings> 96 97 <ProfileSettings quality="720p" format="mp4" duration="30"> 98 <Video codecMime="video/mp4v-es" 99 bitrate="12000000" 100 width="1280" 101 height="720" 102 frameRate="30"/> 103 104 <Audio codecMime="audio/mp4a-latm" 105 bitrate="192000" 106 sampleRate="48000" 107 channels="2"/> 108 </ProfileSettings> 109 110 <ProfileSettings quality="1080p" format="mp4" duration="30"> 111 <Video codecMime="video/mp4v-es" 112 bitrate="17000000" 113 width="1920" 114 height="1080" 115 frameRate="30"/> 116 117 <Audio codecMime="audio/mp4a-latm" 118 bitrate="192000" 119 sampleRate="48000" 120 channels="2"/> 121 </ProfileSettings> 122 </CameraRecorder> 123 </RecorderProfiles> 124 125 <RecorderCaps> 126 <ContainerFormat name="mp4" hasVideo="true"/> 127 <ContainerFormat name="m4a" hasVideo="false"/> 128 129 <VideoEncoderCaps codecMime="video/mp4v-es" 130 bitrate="1-3000000" 131 width="2-1920" 132 height="2-1080" 133 frameRate="1-30"/> 134 135 <VideoEncoderCaps codecMime="video/avc" 136 bitrate="1-3000000" 137 width="2-1920" 138 height="2-1080" 139 frameRate="1-30"/> 140 141 <AudioEncoderCaps codecMime="audio/mp4a-latm" 142 bitrate="1-384000" 143 sampleRate="8000,11025,12000,16000,22050,24000,32000,44100,48000,64000,88200,96000" 144 channels="1-2"/> 145 146 </RecorderCaps> 147</RecorderConfigurations> 148