blob: 0fdc03df54f315ca5367785c4448e204f9f47ae1 [file] [log] [blame]
Robin Pengcd374d82021-02-23 20:00:46 +08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 The Android Open Source Project
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 limitations under the License.
15-->
16<!DOCTYPE MediaSettings [
17<!ELEMENT MediaSettings (CamcorderProfiles,
18 EncoderOutputFileFormat+,
19 VideoEncoderCap+,
20 AudioEncoderCap+,
21 VideoDecoderCap,
22 AudioDecoderCap)>
23<!ELEMENT CamcorderProfiles (EncoderProfile+, ImageEncoding+, ImageDecoding, Camera)>
24<!ELEMENT EncoderProfile (Video, Audio)>
25<!ATTLIST EncoderProfile quality (high|low) #REQUIRED>
26<!ATTLIST EncoderProfile fileFormat (mp4|3gp) #REQUIRED>
27<!ATTLIST EncoderProfile duration (30|60) #REQUIRED>
28<!ELEMENT Video EMPTY>
29<!ATTLIST Video codec (h264|h263|m4v) #REQUIRED>
30<!ATTLIST Video bitRate CDATA #REQUIRED>
31<!ATTLIST Video width CDATA #REQUIRED>
32<!ATTLIST Video height CDATA #REQUIRED>
33<!ATTLIST Video frameRate CDATA #REQUIRED>
34<!ELEMENT Audio EMPTY>
35<!ATTLIST Audio codec (amrnb|amrwb|aac) #REQUIRED>
36<!ATTLIST Audio bitRate CDATA #REQUIRED>
37<!ATTLIST Audio sampleRate CDATA #REQUIRED>
38<!ATTLIST Audio channels (1|2) #REQUIRED>
39<!ELEMENT ImageEncoding EMPTY>
40<!ATTLIST ImageEncoding quality (90|80|70|60|50|40) #REQUIRED>
41<!ELEMENT ImageDecoding EMPTY>
42<!ATTLIST ImageDecoding memCap CDATA #REQUIRED>
43<!ELEMENT Camera EMPTY>
44<!ATTLIST Camera previewFrameRate CDATA #REQUIRED>
45<!ELEMENT EncoderOutputFileFormat EMPTY>
46<!ATTLIST EncoderOutputFileFormat name (mp4|3gp) #REQUIRED>
47<!ELEMENT VideoEncoderCap EMPTY>
wenchangliu72ae1112021-04-15 17:05:21 +080048<!ATTLIST VideoEncoderCap name (hevc|h264|h263|m4v|wmv) #REQUIRED>
Robin Pengcd374d82021-02-23 20:00:46 +080049<!ATTLIST VideoEncoderCap enabled (true|false) #REQUIRED>
50<!ATTLIST VideoEncoderCap minBitRate CDATA #REQUIRED>
51<!ATTLIST VideoEncoderCap maxBitRate CDATA #REQUIRED>
52<!ATTLIST VideoEncoderCap minFrameWidth CDATA #REQUIRED>
53<!ATTLIST VideoEncoderCap maxFrameWidth CDATA #REQUIRED>
54<!ATTLIST VideoEncoderCap minFrameHeight CDATA #REQUIRED>
55<!ATTLIST VideoEncoderCap maxFrameHeight CDATA #REQUIRED>
56<!ATTLIST VideoEncoderCap minFrameRate CDATA #REQUIRED>
57<!ATTLIST VideoEncoderCap maxFrameRate CDATA #REQUIRED>
58<!ELEMENT AudioEncoderCap EMPTY>
59<!ATTLIST AudioEncoderCap name (amrnb|amrwb|aac|wma) #REQUIRED>
60<!ATTLIST AudioEncoderCap enabled (true|false) #REQUIRED>
61<!ATTLIST AudioEncoderCap minBitRate CDATA #REQUIRED>
62<!ATTLIST AudioEncoderCap maxBitRate CDATA #REQUIRED>
63<!ATTLIST AudioEncoderCap minSampleRate CDATA #REQUIRED>
64<!ATTLIST AudioEncoderCap maxSampleRate CDATA #REQUIRED>
65<!ATTLIST AudioEncoderCap minChannels (1|2) #REQUIRED>
66<!ATTLIST AudioEncoderCap maxChannels (1|2) #REQUIRED>
67<!ELEMENT VideoDecoderCap EMPTY>
68<!ATTLIST VideoDecoderCap name (wmv) #REQUIRED>
69<!ATTLIST VideoDecoderCap enabled (true|false) #REQUIRED>
70<!ELEMENT AudioDecoderCap EMPTY>
71<!ATTLIST AudioDecoderCap name (wma) #REQUIRED>
72<!ATTLIST AudioDecoderCap enabled (true|false) #REQUIRED>
73]>
74<!--
75 This file is used to declare the multimedia profiles and capabilities
76 on an android-powered device.
77-->
78<MediaSettings>
79 <!-- Each camcorder profile defines a set of predefined configuration parameters -->
80 <CamcorderProfiles cameraId="0">
81
82 <EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
83 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +080084 bitRate="72000000"
Robin Pengcd374d82021-02-23 20:00:46 +080085 width="3840"
86 height="2160"
87 frameRate="60" />
88
89 <Audio codec="aac"
90 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +080091 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +080092 channels="1" />
93 </EncoderProfile>
94
95 <EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
96 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +080097 bitRate="33000000"
Robin Pengcd374d82021-02-23 20:00:46 +080098 width="1920"
99 height="1080"
100 frameRate="60" />
101
102 <Audio codec="aac"
103 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800104 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800105 channels="1" />
106 </EncoderProfile>
107
108 <EncoderProfile quality="720p" fileFormat="mp4" duration="60">
109 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800110 bitRate="12000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800111 width="1280"
112 height="720"
113 frameRate="30" />
114
115 <Audio codec="aac"
116 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800117 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800118 channels="1" />
119 </EncoderProfile>
120
121 <EncoderProfile quality="480p" fileFormat="mp4" duration="60">
122 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800123 bitRate="6000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800124 width="720"
125 height="480"
126 frameRate="30" />
127
128 <Audio codec="aac"
129 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800130 sampleRate="48000"
131 channels="1" />
132 </EncoderProfile>
133
134 <EncoderProfile quality="cif" fileFormat="mp4" duration="60">
135 <Video codec="h264"
136 bitRate="1200000"
137 width="352"
138 height="288"
139 frameRate="30" />
140
141 <Audio codec="aac"
142 bitRate="96000"
143 sampleRate="48000"
144 channels="1" />
145 </EncoderProfile>
146
147 <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
148 <Video codec="h264"
149 bitRate="512000"
150 width="320"
151 height="240"
152 frameRate="30" />
153
154 <Audio codec="aac"
155 bitRate="96000"
156 sampleRate="48000"
157 channels="1" />
158 </EncoderProfile>
159
160 <EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
161 <Video codec="h264"
162 bitRate="128000"
163 width="176"
164 height="144"
165 frameRate="30" />
166
167 <Audio codec="amrnb"
168 bitRate="12200"
169 sampleRate="8000"
Robin Pengcd374d82021-02-23 20:00:46 +0800170 channels="1" />
171 </EncoderProfile>
172
173 <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
174 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800175 bitRate="48000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800176 width="3840"
177 height="2160"
178 frameRate="30" />
179
180 <!-- Audio settings are not used for timealpse video recording -->
181 <Audio codec="aac"
182 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800183 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800184 channels="1" />
185 </EncoderProfile>
186
187 <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
188 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800189 bitRate="22000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800190 width="1920"
191 height="1080"
192 frameRate="30" />
193
194 <!-- Audio settings are not used for timealpse video recording -->
195 <Audio codec="aac"
196 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800197 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800198 channels="1" />
199 </EncoderProfile>
200
201 <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
202 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800203 bitRate="12000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800204 width="1280"
205 height="720"
206 frameRate="30" />
207
208 <!-- Audio settings are not used for timealpse video recording -->
209 <Audio codec="aac"
210 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800211 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800212 channels="1" />
213 </EncoderProfile>
214
215 <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
216 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800217 bitRate="6000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800218 width="720"
219 height="480"
220 frameRate="30" />
221
222 <!-- Audio settings are not used for timealpse video recording -->
223 <Audio codec="aac"
224 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800225 sampleRate="48000"
226 channels="1" />
227 </EncoderProfile>
228
229 <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
230 <Video codec="h264"
231 bitRate="1200000"
232 width="352"
233 height="288"
234 frameRate="30" />
235
236 <!-- Audio settings are not used for timealpse video recording -->
237 <Audio codec="aac"
238 bitRate="96000"
239 sampleRate="48000"
240 channels="1" />
241 </EncoderProfile>
242
243 <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
244 <Video codec="h264"
245 bitRate="192000"
246 width="176"
247 height="144"
248 frameRate="30" />
249
250 <!-- Audio settings are not used for timealpse video recording -->
251 <Audio codec="amrnb"
252 bitRate="12200"
253 sampleRate="8000"
254 channels="1" />
255 </EncoderProfile>
256
257 <EncoderProfile quality="highspeedlow" fileFormat="mp4" duration="60">
258 <Video codec="h264"
259 bitRate="72000000"
260 width="1920"
261 height="1080"
262 frameRate="240" />
263
264 <!-- audio setting is ignored -->
265 <Audio codec="aac"
266 bitRate="96000"
267 sampleRate="48000"
268 channels="1" />
269 </EncoderProfile>
270
271 <EncoderProfile quality="highspeedhigh" fileFormat="mp4" duration="60">
272 <Video codec="h264"
273 bitRate="72000000"
274 width="1920"
275 height="1080"
276 frameRate="240" />
277
278 <!-- audio setting is ignored -->
279 <Audio codec="aac"
280 bitRate="96000"
281 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800282 channels="1" />
283 </EncoderProfile>
284
285 <EncoderProfile quality="highspeed1080p" fileFormat="mp4" duration="60">
286 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800287 bitRate="72000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800288 width="1920"
289 height="1080"
290 frameRate="240" />
291
292 <!-- audio setting is ignored -->
293 <Audio codec="aac"
294 bitRate="96000"
295 sampleRate="48000"
296 channels="1" />
297 </EncoderProfile>
298
299 <ImageEncoding quality="90" />
300 <ImageEncoding quality="80" />
301 <ImageEncoding quality="70" />
302 <ImageDecoding memCap="20000000" />
303
304 </CamcorderProfiles>
305
306 <CamcorderProfiles cameraId="1">
307
308 <EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
309 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800310 bitRate="22000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800311 width="1920"
312 height="1080"
313 frameRate="30" />
314
315 <Audio codec="aac"
316 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800317 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800318 channels="1" />
319 </EncoderProfile>
320
321 <EncoderProfile quality="720p" fileFormat="mp4" duration="60">
322 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800323 bitRate="12000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800324 width="1280"
325 height="720"
326 frameRate="30" />
327
328 <Audio codec="aac"
329 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800330 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800331 channels="1" />
332 </EncoderProfile>
333
334 <EncoderProfile quality="480p" fileFormat="mp4" duration="60">
335 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800336 bitRate="6000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800337 width="720"
338 height="480"
339 frameRate="30" />
340
341 <Audio codec="aac"
342 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800343 sampleRate="48000"
344 channels="1" />
345 </EncoderProfile>
346
347 <EncoderProfile quality="cif" fileFormat="mp4" duration="60">
348 <Video codec="h264"
349 bitRate="1200000"
350 width="352"
351 height="288"
352 frameRate="30" />
353
354 <Audio codec="aac"
355 bitRate="96000"
356 sampleRate="48000"
357 channels="1" />
358 </EncoderProfile>
359
360 <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
361 <Video codec="h264"
362 bitRate="512000"
363 width="320"
364 height="240"
365 frameRate="30" />
366
367 <Audio codec="aac"
368 bitRate="96000"
369 sampleRate="48000"
370 channels="1" />
371 </EncoderProfile>
372
373 <EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
374 <Video codec="h264"
375 bitRate="128000"
376 width="176"
377 height="144"
378 frameRate="30" />
379
380 <Audio codec="amrnb"
381 bitRate="12200"
382 sampleRate="8000"
Robin Pengcd374d82021-02-23 20:00:46 +0800383 channels="1" />
384 </EncoderProfile>
385
386 <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
387 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800388 bitRate="22000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800389 width="1920"
390 height="1080"
391 frameRate="30" />
392
393 <!-- Audio settings are not used for timealpse video recording -->
394 <Audio codec="aac"
395 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800396 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800397 channels="1" />
398 </EncoderProfile>
399
400 <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
401 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800402 bitRate="12000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800403 width="1280"
404 height="720"
405 frameRate="30" />
406
407 <!-- Audio settings are not used for timealpse video recording -->
408 <Audio codec="aac"
409 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800410 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800411 channels="1" />
412 </EncoderProfile>
413
414 <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
415 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800416 bitRate="6000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800417 width="720"
418 height="480"
419 frameRate="30" />
420
421 <!-- Audio settings are not used for timealpse video recording -->
422 <Audio codec="aac"
423 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800424 sampleRate="48000"
425 channels="1" />
426 </EncoderProfile>
427
428 <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
429 <Video codec="h264"
430 bitRate="1200000"
431 width="352"
432 height="288"
433 frameRate="30" />
434
435 <!-- Audio settings are not used for timealpse video recording -->
436 <Audio codec="aac"
437 bitRate="96000"
438 sampleRate="48000"
439 channels="1" />
440 </EncoderProfile>
441
442 <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
443 <Video codec="h264"
444 bitRate="192000"
445 width="176"
446 height="144"
447 frameRate="30" />
448
449 <!-- Audio settings are not used for timealpse video recording -->
450 <Audio codec="amrnb"
451 bitRate="12200"
452 sampleRate="8000"
Robin Pengcd374d82021-02-23 20:00:46 +0800453 channels="1" />
454 </EncoderProfile>
455
456 <ImageEncoding quality="90" />
457 <ImageEncoding quality="80" />
458 <ImageEncoding quality="70" />
459 <ImageDecoding memCap="20000000" />
460
461 </CamcorderProfiles>
462
463 <CamcorderProfiles cameraId="2">
464
465 <EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
466 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800467 bitRate="72000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800468 width="3840"
469 height="2160"
470 frameRate="60" />
471
472 <Audio codec="aac"
473 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800474 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800475 channels="1" />
476 </EncoderProfile>
477
478 <EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
479 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800480 bitRate="33000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800481 width="1920"
482 height="1080"
483 frameRate="60" />
484
485 <Audio codec="aac"
486 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800487 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800488 channels="1" />
489 </EncoderProfile>
490
491 <EncoderProfile quality="720p" fileFormat="mp4" duration="60">
492 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800493 bitRate="12000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800494 width="1280"
495 height="720"
496 frameRate="30" />
497
498 <Audio codec="aac"
499 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800500 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800501 channels="1" />
502 </EncoderProfile>
503
504 <EncoderProfile quality="480p" fileFormat="mp4" duration="60">
505 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800506 bitRate="6000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800507 width="720"
508 height="480"
509 frameRate="30" />
510
511 <Audio codec="aac"
512 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800513 sampleRate="48000"
514 channels="1" />
515 </EncoderProfile>
516
517 <EncoderProfile quality="cif" fileFormat="mp4" duration="60">
518 <Video codec="h264"
519 bitRate="1200000"
520 width="352"
521 height="288"
522 frameRate="30" />
523
524 <Audio codec="aac"
525 bitRate="96000"
526 sampleRate="48000"
527 channels="1" />
528 </EncoderProfile>
529
530 <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
531 <Video codec="h264"
532 bitRate="512000"
533 width="320"
534 height="240"
535 frameRate="30" />
536
537 <Audio codec="aac"
538 bitRate="96000"
539 sampleRate="48000"
540 channels="1" />
541 </EncoderProfile>
542
543 <EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
544 <Video codec="h264"
545 bitRate="128000"
546 width="176"
547 height="144"
548 frameRate="30" />
549
550 <Audio codec="amrnb"
551 bitRate="12200"
552 sampleRate="8000"
Robin Pengcd374d82021-02-23 20:00:46 +0800553 channels="1" />
554 </EncoderProfile>
555
556 <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
557 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800558 bitRate="48000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800559 width="3840"
560 height="2160"
561 frameRate="30" />
562
563 <!-- Audio settings are not used for timealpse video recording -->
564 <Audio codec="aac"
565 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800566 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800567 channels="1" />
568 </EncoderProfile>
569
570 <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
571 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800572 bitRate="22000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800573 width="1920"
574 height="1080"
575 frameRate="30" />
576
577 <!-- Audio settings are not used for timealpse video recording -->
578 <Audio codec="aac"
579 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800580 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800581 channels="1" />
582 </EncoderProfile>
583
584 <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
585 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800586 bitRate="12000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800587 width="1280"
588 height="720"
589 frameRate="30" />
590
591 <!-- Audio settings are not used for timealpse video recording -->
592 <Audio codec="aac"
593 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800594 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800595 channels="1" />
596 </EncoderProfile>
597
598 <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
599 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800600 bitRate="6000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800601 width="720"
602 height="480"
603 frameRate="30" />
604
605 <!-- Audio settings are not used for timealpse video recording -->
606 <Audio codec="aac"
607 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800608 sampleRate="48000"
609 channels="1" />
610 </EncoderProfile>
611
612 <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
613 <Video codec="h264"
614 bitRate="1200000"
615 width="352"
616 height="288"
617 frameRate="30" />
618
619 <!-- Audio settings are not used for timealpse video recording -->
620 <Audio codec="aac"
621 bitRate="96000"
622 sampleRate="48000"
623 channels="1" />
624 </EncoderProfile>
625
626 <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
627 <Video codec="h264"
628 bitRate="192000"
629 width="176"
630 height="144"
631 frameRate="30" />
632
633 <!-- Audio settings are not used for timealpse video recording -->
634 <Audio codec="amrnb"
635 bitRate="12200"
636 sampleRate="8000"
Robin Pengcd374d82021-02-23 20:00:46 +0800637 channels="1" />
638 </EncoderProfile>
639
Robin Pengcd374d82021-02-23 20:00:46 +0800640 <ImageEncoding quality="90" />
641 <ImageEncoding quality="80" />
642 <ImageEncoding quality="70" />
643 <ImageDecoding memCap="20000000" />
644
645 </CamcorderProfiles>
646
647 <CamcorderProfiles cameraId="3">
648
649 <EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
650 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800651 bitRate="72000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800652 width="3840"
653 height="2160"
654 frameRate="60" />
655
656 <Audio codec="aac"
657 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800658 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800659 channels="1" />
660 </EncoderProfile>
661
662 <EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
663 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800664 bitRate="33000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800665 width="1920"
666 height="1080"
667 frameRate="60" />
668
669 <Audio codec="aac"
670 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800671 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800672 channels="1" />
673 </EncoderProfile>
674
675 <EncoderProfile quality="720p" fileFormat="mp4" duration="60">
676 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800677 bitRate="12000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800678 width="1280"
679 height="720"
680 frameRate="30" />
681
682 <Audio codec="aac"
683 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800684 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800685 channels="1" />
686 </EncoderProfile>
687
688 <EncoderProfile quality="480p" fileFormat="mp4" duration="60">
689 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800690 bitRate="6000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800691 width="720"
692 height="480"
693 frameRate="30" />
694
695 <Audio codec="aac"
696 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800697 sampleRate="48000"
698 channels="1" />
699 </EncoderProfile>
700
701 <EncoderProfile quality="cif" fileFormat="mp4" duration="60">
702 <Video codec="h264"
703 bitRate="1200000"
704 width="352"
705 height="288"
706 frameRate="30" />
707
708 <Audio codec="aac"
709 bitRate="96000"
710 sampleRate="48000"
711 channels="1" />
712 </EncoderProfile>
713
714 <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
715 <Video codec="h264"
716 bitRate="512000"
717 width="320"
718 height="240"
719 frameRate="30" />
720
721 <Audio codec="aac"
722 bitRate="96000"
723 sampleRate="48000"
724 channels="1" />
725 </EncoderProfile>
726
727 <EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
728 <Video codec="h264"
729 bitRate="128000"
730 width="176"
731 height="144"
732 frameRate="30" />
733
734 <Audio codec="amrnb"
735 bitRate="12200"
736 sampleRate="8000"
Robin Pengcd374d82021-02-23 20:00:46 +0800737 channels="1" />
738 </EncoderProfile>
739
740 <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
741 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800742 bitRate="48000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800743 width="3840"
744 height="2160"
745 frameRate="30" />
746
747 <!-- Audio settings are not used for timealpse video recording -->
748 <Audio codec="aac"
749 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800750 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800751 channels="1" />
752 </EncoderProfile>
753
754 <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
755 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800756 bitRate="22000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800757 width="1920"
758 height="1080"
759 frameRate="30" />
760
761 <!-- Audio settings are not used for timealpse video recording -->
762 <Audio codec="aac"
763 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800764 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800765 channels="1" />
766 </EncoderProfile>
767
768 <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
769 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800770 bitRate="12000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800771 width="1280"
772 height="720"
773 frameRate="30" />
774
775 <!-- Audio settings are not used for timealpse video recording -->
776 <Audio codec="aac"
777 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800778 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800779 channels="1" />
780 </EncoderProfile>
781
782 <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
783 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800784 bitRate="6000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800785 width="720"
786 height="480"
787 frameRate="30" />
788
789 <!-- Audio settings are not used for timealpse video recording -->
790 <Audio codec="aac"
791 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800792 sampleRate="48000"
793 channels="1" />
794 </EncoderProfile>
795
796 <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
797 <Video codec="h264"
798 bitRate="1200000"
799 width="352"
800 height="288"
801 frameRate="30" />
802
803 <!-- Audio settings are not used for timealpse video recording -->
804 <Audio codec="aac"
805 bitRate="96000"
806 sampleRate="48000"
807 channels="1" />
808 </EncoderProfile>
809
810 <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
811 <Video codec="h264"
812 bitRate="192000"
813 width="176"
814 height="144"
815 frameRate="30" />
816
817 <!-- Audio settings are not used for timealpse video recording -->
818 <Audio codec="amrnb"
819 bitRate="12200"
820 sampleRate="8000"
Robin Pengcd374d82021-02-23 20:00:46 +0800821 channels="1" />
822 </EncoderProfile>
823
Robin Pengcd374d82021-02-23 20:00:46 +0800824 <ImageEncoding quality="90" />
825 <ImageEncoding quality="80" />
826 <ImageEncoding quality="70" />
827 <ImageDecoding memCap="20000000" />
828
829 </CamcorderProfiles>
830
Sundong Ahna65c38d2021-04-08 17:28:17 +0900831 <CamcorderProfiles cameraId="4">
Robin Pengcd374d82021-02-23 20:00:46 +0800832
833 <EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
834 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800835 bitRate="72000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800836 width="3840"
837 height="2160"
838 frameRate="60" />
839
840 <Audio codec="aac"
841 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800842 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800843 channels="1" />
844 </EncoderProfile>
845
846 <EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
847 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800848 bitRate="33000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800849 width="1920"
850 height="1080"
851 frameRate="60" />
852
853 <Audio codec="aac"
854 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800855 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800856 channels="1" />
857 </EncoderProfile>
858
859 <EncoderProfile quality="720p" fileFormat="mp4" duration="60">
860 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800861 bitRate="12000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800862 width="1280"
863 height="720"
864 frameRate="30" />
865
866 <Audio codec="aac"
867 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800868 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800869 channels="1" />
870 </EncoderProfile>
871
872 <EncoderProfile quality="480p" fileFormat="mp4" duration="60">
873 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800874 bitRate="6000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800875 width="720"
876 height="480"
877 frameRate="30" />
878
879 <Audio codec="aac"
880 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800881 sampleRate="48000"
882 channels="1" />
883 </EncoderProfile>
884
885 <EncoderProfile quality="cif" fileFormat="mp4" duration="60">
886 <Video codec="h264"
887 bitRate="1200000"
888 width="352"
889 height="288"
890 frameRate="30" />
891
892 <Audio codec="aac"
893 bitRate="96000"
894 sampleRate="48000"
895 channels="1" />
896 </EncoderProfile>
897
898 <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
899 <Video codec="h264"
900 bitRate="512000"
901 width="320"
902 height="240"
903 frameRate="30" />
904
905 <Audio codec="aac"
906 bitRate="96000"
907 sampleRate="48000"
908 channels="1" />
909 </EncoderProfile>
910
911 <EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
912 <Video codec="h264"
913 bitRate="128000"
914 width="176"
915 height="144"
916 frameRate="30" />
917
918 <Audio codec="amrnb"
919 bitRate="12200"
920 sampleRate="8000"
Robin Pengcd374d82021-02-23 20:00:46 +0800921 channels="1" />
922 </EncoderProfile>
923
924 <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
925 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800926 bitRate="48000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800927 width="3840"
928 height="2160"
929 frameRate="30" />
930
931 <!-- Audio settings are not used for timealpse video recording -->
932 <Audio codec="aac"
933 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800934 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800935 channels="1" />
936 </EncoderProfile>
937
938 <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
939 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800940 bitRate="22000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800941 width="1920"
942 height="1080"
943 frameRate="30" />
944
945 <!-- Audio settings are not used for timealpse video recording -->
946 <Audio codec="aac"
947 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800948 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800949 channels="1" />
950 </EncoderProfile>
951
952 <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
953 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800954 bitRate="12000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800955 width="1280"
956 height="720"
957 frameRate="30" />
958
959 <!-- Audio settings are not used for timealpse video recording -->
960 <Audio codec="aac"
961 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800962 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +0800963 channels="1" />
964 </EncoderProfile>
965
966 <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
967 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +0800968 bitRate="6000000"
Robin Pengcd374d82021-02-23 20:00:46 +0800969 width="720"
970 height="480"
971 frameRate="30" />
972
973 <!-- Audio settings are not used for timealpse video recording -->
974 <Audio codec="aac"
975 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +0800976 sampleRate="48000"
977 channels="1" />
978 </EncoderProfile>
979
980 <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
981 <Video codec="h264"
982 bitRate="1200000"
983 width="352"
984 height="288"
985 frameRate="30" />
986
987 <!-- Audio settings are not used for timealpse video recording -->
988 <Audio codec="aac"
989 bitRate="96000"
990 sampleRate="48000"
991 channels="1" />
992 </EncoderProfile>
993
994 <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
995 <Video codec="h264"
996 bitRate="192000"
997 width="176"
998 height="144"
999 frameRate="30" />
1000
1001 <!-- Audio settings are not used for timealpse video recording -->
1002 <Audio codec="amrnb"
1003 bitRate="12200"
1004 sampleRate="8000"
Robin Pengcd374d82021-02-23 20:00:46 +08001005 channels="1" />
1006 </EncoderProfile>
1007
1008 <ImageEncoding quality="90" />
1009 <ImageEncoding quality="80" />
1010 <ImageEncoding quality="70" />
1011 <ImageDecoding memCap="20000000" />
1012
1013 </CamcorderProfiles>
1014
1015 <CamcorderProfiles cameraId="5">
1016
1017 <EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
1018 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001019 bitRate="48000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001020 width="3840"
1021 height="2160"
1022 frameRate="30" />
1023
1024 <Audio codec="aac"
1025 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001026 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +08001027 channels="1" />
1028 </EncoderProfile>
1029
1030 <EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
1031 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001032 bitRate="22000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001033 width="1920"
1034 height="1080"
1035 frameRate="30" />
1036
1037 <Audio codec="aac"
1038 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001039 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +08001040 channels="1" />
1041 </EncoderProfile>
1042
1043 <EncoderProfile quality="720p" fileFormat="mp4" duration="60">
1044 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001045 bitRate="12000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001046 width="1280"
1047 height="720"
1048 frameRate="30" />
1049
1050 <Audio codec="aac"
1051 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001052 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +08001053 channels="1" />
1054 </EncoderProfile>
1055
1056 <EncoderProfile quality="480p" fileFormat="mp4" duration="60">
1057 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001058 bitRate="6000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001059 width="720"
1060 height="480"
1061 frameRate="30" />
1062
1063 <Audio codec="aac"
1064 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001065 sampleRate="48000"
1066 channels="1" />
1067 </EncoderProfile>
1068
1069 <EncoderProfile quality="cif" fileFormat="mp4" duration="60">
1070 <Video codec="h264"
1071 bitRate="1200000"
1072 width="352"
1073 height="288"
1074 frameRate="30" />
1075
1076 <Audio codec="aac"
1077 bitRate="96000"
1078 sampleRate="48000"
1079 channels="1" />
1080 </EncoderProfile>
1081
1082 <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
1083 <Video codec="h264"
1084 bitRate="512000"
1085 width="320"
1086 height="240"
1087 frameRate="30" />
1088
1089 <Audio codec="aac"
1090 bitRate="96000"
1091 sampleRate="48000"
1092 channels="1" />
1093 </EncoderProfile>
1094
1095 <EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
1096 <Video codec="h264"
1097 bitRate="128000"
1098 width="176"
1099 height="144"
1100 frameRate="30" />
1101
1102 <Audio codec="amrnb"
1103 bitRate="12200"
1104 sampleRate="8000"
Robin Pengcd374d82021-02-23 20:00:46 +08001105 channels="1" />
1106 </EncoderProfile>
1107
1108 <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
1109 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001110 bitRate="48000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001111 width="3840"
1112 height="2160"
1113 frameRate="30" />
1114
1115 <!-- Audio settings are not used for timealpse video recording -->
1116 <Audio codec="aac"
1117 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001118 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +08001119 channels="1" />
1120 </EncoderProfile>
1121
1122 <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
1123 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001124 bitRate="22000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001125 width="1920"
1126 height="1080"
1127 frameRate="30" />
1128
1129 <!-- Audio settings are not used for timealpse video recording -->
1130 <Audio codec="aac"
1131 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001132 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +08001133 channels="1" />
1134 </EncoderProfile>
1135
1136 <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
1137 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001138 bitRate="12000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001139 width="1280"
1140 height="720"
1141 frameRate="30" />
1142
1143 <!-- Audio settings are not used for timealpse video recording -->
1144 <Audio codec="aac"
1145 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001146 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +08001147 channels="1" />
1148 </EncoderProfile>
1149
1150 <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
1151 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001152 bitRate="6000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001153 width="720"
1154 height="480"
1155 frameRate="30" />
1156
1157 <!-- Audio settings are not used for timealpse video recording -->
1158 <Audio codec="aac"
1159 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001160 sampleRate="48000"
1161 channels="1" />
1162 </EncoderProfile>
1163
1164 <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
1165 <Video codec="h264"
1166 bitRate="1200000"
1167 width="352"
1168 height="288"
1169 frameRate="30" />
1170
1171 <!-- Audio settings are not used for timealpse video recording -->
1172 <Audio codec="aac"
1173 bitRate="96000"
1174 sampleRate="48000"
1175 channels="1" />
1176 </EncoderProfile>
1177
1178 <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
1179 <Video codec="h264"
1180 bitRate="192000"
1181 width="176"
1182 height="144"
1183 frameRate="30" />
1184
1185 <!-- Audio settings are not used for timealpse video recording -->
1186 <Audio codec="amrnb"
1187 bitRate="12200"
1188 sampleRate="8000"
Robin Pengcd374d82021-02-23 20:00:46 +08001189 channels="1" />
1190 </EncoderProfile>
1191
1192 <ImageEncoding quality="90" />
1193 <ImageEncoding quality="80" />
1194 <ImageEncoding quality="70" />
1195 <ImageDecoding memCap="20000000" />
1196
1197 </CamcorderProfiles>
1198
1199 <CamcorderProfiles cameraId="6">
1200
1201 <EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
1202 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001203 bitRate="48000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001204 width="3840"
1205 height="2160"
1206 frameRate="30" />
1207
1208 <Audio codec="aac"
1209 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001210 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +08001211 channels="1" />
1212 </EncoderProfile>
1213
1214 <EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
1215 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001216 bitRate="22000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001217 width="1920"
1218 height="1080"
JohnCH Tsaic6f7d942021-03-17 20:51:58 +08001219 frameRate="60" />
Robin Pengcd374d82021-02-23 20:00:46 +08001220
1221 <Audio codec="aac"
1222 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001223 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +08001224 channels="1" />
1225 </EncoderProfile>
1226
1227 <EncoderProfile quality="720p" fileFormat="mp4" duration="60">
1228 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001229 bitRate="12000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001230 width="1280"
1231 height="720"
1232 frameRate="30" />
1233
1234 <Audio codec="aac"
1235 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001236 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +08001237 channels="1" />
1238 </EncoderProfile>
1239
1240 <EncoderProfile quality="480p" fileFormat="mp4" duration="60">
1241 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001242 bitRate="6000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001243 width="720"
1244 height="480"
1245 frameRate="30" />
1246
1247 <Audio codec="aac"
1248 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001249 sampleRate="48000"
1250 channels="1" />
1251 </EncoderProfile>
1252
1253 <EncoderProfile quality="cif" fileFormat="mp4" duration="60">
1254 <Video codec="h264"
1255 bitRate="1200000"
1256 width="352"
1257 height="288"
1258 frameRate="30" />
1259
1260 <Audio codec="aac"
1261 bitRate="96000"
1262 sampleRate="48000"
1263 channels="1" />
1264 </EncoderProfile>
1265
1266 <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
1267 <Video codec="h264"
1268 bitRate="512000"
1269 width="320"
1270 height="240"
1271 frameRate="30" />
1272
1273 <Audio codec="aac"
1274 bitRate="96000"
1275 sampleRate="48000"
1276 channels="1" />
1277 </EncoderProfile>
1278
1279 <EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
1280 <Video codec="h264"
1281 bitRate="128000"
1282 width="176"
1283 height="144"
1284 frameRate="30" />
1285
1286 <Audio codec="amrnb"
1287 bitRate="12200"
1288 sampleRate="8000"
Robin Pengcd374d82021-02-23 20:00:46 +08001289 channels="1" />
1290 </EncoderProfile>
1291
1292 <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
1293 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001294 bitRate="48000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001295 width="3840"
1296 height="2160"
1297 frameRate="30" />
1298
1299 <!-- Audio settings are not used for timealpse video recording -->
1300 <Audio codec="aac"
1301 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001302 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +08001303 channels="1" />
1304 </EncoderProfile>
1305
1306 <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
1307 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001308 bitRate="22000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001309 width="1920"
1310 height="1080"
1311 frameRate="30" />
1312
1313 <!-- Audio settings are not used for timealpse video recording -->
1314 <Audio codec="aac"
1315 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001316 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +08001317 channels="1" />
1318 </EncoderProfile>
1319
1320 <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
1321 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001322 bitRate="12000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001323 width="1280"
1324 height="720"
1325 frameRate="30" />
1326
1327 <!-- Audio settings are not used for timealpse video recording -->
1328 <Audio codec="aac"
1329 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001330 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +08001331 channels="1" />
1332 </EncoderProfile>
1333
1334 <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
1335 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001336 bitRate="6000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001337 width="720"
1338 height="480"
1339 frameRate="30" />
1340
1341 <!-- Audio settings are not used for timealpse video recording -->
1342 <Audio codec="aac"
1343 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001344 sampleRate="48000"
1345 channels="1" />
1346 </EncoderProfile>
1347
1348 <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
1349 <Video codec="h264"
1350 bitRate="1200000"
1351 width="352"
1352 height="288"
1353 frameRate="30" />
1354
1355 <!-- Audio settings are not used for timealpse video recording -->
1356 <Audio codec="aac"
1357 bitRate="96000"
1358 sampleRate="48000"
1359 channels="1" />
1360 </EncoderProfile>
1361
1362 <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
1363 <Video codec="h264"
1364 bitRate="192000"
1365 width="176"
1366 height="144"
1367 frameRate="30" />
1368
1369 <!-- Audio settings are not used for timealpse video recording -->
1370 <Audio codec="amrnb"
1371 bitRate="12200"
1372 sampleRate="8000"
Robin Pengcd374d82021-02-23 20:00:46 +08001373 channels="1" />
1374 </EncoderProfile>
1375
1376 <ImageEncoding quality="90" />
1377 <ImageEncoding quality="80" />
1378 <ImageEncoding quality="70" />
1379 <ImageDecoding memCap="20000000" />
1380
1381 </CamcorderProfiles>
1382
Robin Pengcd374d82021-02-23 20:00:46 +08001383 <CamcorderProfiles cameraId="7">
1384
1385 <EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
1386 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001387 bitRate="22000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001388 width="1920"
1389 height="1080"
1390 frameRate="30" />
1391
1392 <Audio codec="aac"
1393 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001394 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +08001395 channels="1" />
1396 </EncoderProfile>
1397
1398 <EncoderProfile quality="720p" fileFormat="mp4" duration="60">
1399 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001400 bitRate="12000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001401 width="1280"
1402 height="720"
1403 frameRate="30" />
1404
1405 <Audio codec="aac"
1406 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001407 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +08001408 channels="1" />
1409 </EncoderProfile>
1410
1411 <EncoderProfile quality="480p" fileFormat="mp4" duration="60">
1412 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001413 bitRate="6000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001414 width="720"
1415 height="480"
1416 frameRate="30" />
1417
1418 <Audio codec="aac"
1419 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001420 sampleRate="48000"
1421 channels="1" />
1422 </EncoderProfile>
1423
1424 <EncoderProfile quality="cif" fileFormat="mp4" duration="60">
1425 <Video codec="h264"
1426 bitRate="1200000"
1427 width="352"
1428 height="288"
1429 frameRate="30" />
1430
1431 <Audio codec="aac"
1432 bitRate="96000"
1433 sampleRate="48000"
1434 channels="1" />
1435 </EncoderProfile>
1436
1437 <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
1438 <Video codec="h264"
1439 bitRate="512000"
1440 width="320"
1441 height="240"
1442 frameRate="30" />
1443
1444 <Audio codec="aac"
1445 bitRate="96000"
1446 sampleRate="48000"
1447 channels="1" />
1448 </EncoderProfile>
1449
1450 <EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
1451 <Video codec="h264"
1452 bitRate="128000"
1453 width="176"
1454 height="144"
1455 frameRate="30" />
1456
1457 <Audio codec="amrnb"
1458 bitRate="12200"
1459 sampleRate="8000"
Robin Pengcd374d82021-02-23 20:00:46 +08001460 channels="1" />
1461 </EncoderProfile>
1462
1463 <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
1464 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001465 bitRate="22000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001466 width="1920"
1467 height="1080"
1468 frameRate="30" />
1469
1470 <!-- Audio settings are not used for timealpse video recording -->
1471 <Audio codec="aac"
1472 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001473 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +08001474 channels="1" />
1475 </EncoderProfile>
1476
1477 <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
1478 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001479 bitRate="12000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001480 width="1280"
1481 height="720"
1482 frameRate="30" />
1483
1484 <!-- Audio settings are not used for timealpse video recording -->
1485 <Audio codec="aac"
1486 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001487 sampleRate="48000"
Robin Pengcd374d82021-02-23 20:00:46 +08001488 channels="1" />
1489 </EncoderProfile>
1490
1491 <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
1492 <Video codec="h264"
wenchangliu72ae1112021-04-15 17:05:21 +08001493 bitRate="6000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001494 width="720"
1495 height="480"
1496 frameRate="30" />
1497
1498 <!-- Audio settings are not used for timealpse video recording -->
1499 <Audio codec="aac"
1500 bitRate="96000"
wenchangliu72ae1112021-04-15 17:05:21 +08001501 sampleRate="48000"
1502 channels="1" />
1503 </EncoderProfile>
1504
1505 <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
1506 <Video codec="h264"
1507 bitRate="1200000"
1508 width="352"
1509 height="288"
1510 frameRate="30" />
1511
1512 <!-- Audio settings are not used for timealpse video recording -->
1513 <Audio codec="aac"
1514 bitRate="96000"
1515 sampleRate="48000"
1516 channels="1" />
1517 </EncoderProfile>
1518
1519 <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
1520 <Video codec="h264"
1521 bitRate="192000"
1522 width="176"
1523 height="144"
1524 frameRate="30" />
1525
1526 <!-- Audio settings are not used for timealpse video recording -->
1527 <Audio codec="amrnb"
1528 bitRate="12200"
1529 sampleRate="8000"
Robin Pengcd374d82021-02-23 20:00:46 +08001530 channels="1" />
1531 </EncoderProfile>
1532
1533 <ImageEncoding quality="90" />
1534 <ImageEncoding quality="80" />
1535 <ImageEncoding quality="70" />
1536 <ImageDecoding memCap="20000000" />
1537
1538 </CamcorderProfiles>
1539
1540 <EncoderOutputFileFormat name="3gp" />
1541 <EncoderOutputFileFormat name="mp4" />
1542
1543 <!--
1544 If a codec is not enabled, it is invisible to the applications
1545 In other words, the applications won't be able to use the codec
1546 or query the capabilities of the codec at all if it is disabled
1547 -->
1548
1549 <!--
1550 FIXME : we only check Mpeg4 encorder cap and other codec doesn't check
1551 codec cap
1552 -->
wenchangliu72ae1112021-04-15 17:05:21 +08001553 <VideoEncoderCap name="hevc" enabled="true"
1554 minBitRate="64000" maxBitRate="100000000"
1555 minFrameWidth="128" maxFrameWidth="3840"
1556 minFrameHeight="96" maxFrameHeight="2160"
1557 minFrameRate="15" maxFrameRate="60" />
1558
Robin Pengcd374d82021-02-23 20:00:46 +08001559 <VideoEncoderCap name="h264" enabled="true"
wenchangliu72ae1112021-04-15 17:05:21 +08001560 minBitRate="64000" maxBitRate="100000000"
Robin Pengcd374d82021-02-23 20:00:46 +08001561 minFrameWidth="128" maxFrameWidth="3840"
1562 minFrameHeight="96" maxFrameHeight="2160"
1563 minFrameRate="15" maxFrameRate="60" />
1564
1565 <VideoEncoderCap name="h263" enabled="true"
1566 minBitRate="64000" maxBitRate="1000000"
1567 minFrameWidth="128" maxFrameWidth="1920"
1568 minFrameHeight="96" maxFrameHeight="1080"
1569 minFrameRate="15" maxFrameRate="30" />
1570
1571 <VideoEncoderCap name="m4v" enabled="true"
1572 minBitRate="64000" maxBitRate="2000000"
1573 minFrameWidth="128" maxFrameWidth="1920"
1574 minFrameHeight="96" maxFrameHeight="1080"
1575 minFrameRate="15" maxFrameRate="30" />
1576
1577 <AudioEncoderCap name="aac" enabled="true"
1578 minBitRate="758" maxBitRate="288000"
1579 minSampleRate="8000" maxSampleRate="48000"
1580 minChannels="1" maxChannels="1" />
1581
1582 <AudioEncoderCap name="heaac" enabled="true"
1583 minBitRate="8000" maxBitRate="64000"
1584 minSampleRate="16000" maxSampleRate="48000"
1585 minChannels="1" maxChannels="1" />
1586
1587 <AudioEncoderCap name="aaceld" enabled="true"
1588 minBitRate="16000" maxBitRate="192000"
1589 minSampleRate="16000" maxSampleRate="48000"
1590 minChannels="1" maxChannels="1" />
1591
1592 <AudioEncoderCap name="amrwb" enabled="true"
1593 minBitRate="6600" maxBitRate="23050"
1594 minSampleRate="16000" maxSampleRate="16000"
1595 minChannels="1" maxChannels="1" />
1596
1597 <AudioEncoderCap name="amrnb" enabled="true"
1598 minBitRate="5525" maxBitRate="12200"
1599 minSampleRate="8000" maxSampleRate="8000"
1600 minChannels="1" maxChannels="1" />
1601
1602 <!--
1603 FIXME:
1604 We do not check decoder capabilities at present
1605 At present, we only check whether windows media is visible
1606 for TEST applications. For other applications, we do
1607 not perform any checks at all.
1608 -->
1609 <VideoDecoderCap name="wmv" enabled="false"/>
1610 <AudioDecoderCap name="wma" enabled="false"/>
1611</MediaSettings>