Robin Peng | cd374d8 | 2021-02-23 20:00:46 +0800 | [diff] [blame] | 1 | <?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> |
| 48 | <!ATTLIST VideoEncoderCap name (h264|h263|m4v|wmv) #REQUIRED> |
| 49 | <!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" |
| 84 | bitRate="12000000" |
| 85 | width="3840" |
| 86 | height="2160" |
| 87 | frameRate="60" /> |
| 88 | |
| 89 | <Audio codec="aac" |
| 90 | bitRate="96000" |
| 91 | sampleRate="16000" |
| 92 | channels="1" /> |
| 93 | </EncoderProfile> |
| 94 | |
| 95 | <EncoderProfile quality="1080p" fileFormat="mp4" duration="60"> |
| 96 | <Video codec="h264" |
| 97 | bitRate="12000000" |
| 98 | width="1920" |
| 99 | height="1080" |
| 100 | frameRate="60" /> |
| 101 | |
| 102 | <Audio codec="aac" |
| 103 | bitRate="96000" |
| 104 | sampleRate="16000" |
| 105 | channels="1" /> |
| 106 | </EncoderProfile> |
| 107 | |
| 108 | <EncoderProfile quality="720p" fileFormat="mp4" duration="60"> |
| 109 | <Video codec="h264" |
| 110 | bitRate="8000000" |
| 111 | width="1280" |
| 112 | height="720" |
| 113 | frameRate="30" /> |
| 114 | |
| 115 | <Audio codec="aac" |
| 116 | bitRate="96000" |
| 117 | sampleRate="16000" |
| 118 | channels="1" /> |
| 119 | </EncoderProfile> |
| 120 | |
| 121 | <EncoderProfile quality="480p" fileFormat="mp4" duration="60"> |
| 122 | <Video codec="h264" |
| 123 | bitRate="3000000" |
| 124 | width="720" |
| 125 | height="480" |
| 126 | frameRate="30" /> |
| 127 | |
| 128 | <Audio codec="aac" |
| 129 | bitRate="96000" |
| 130 | sampleRate="16000" |
| 131 | channels="1" /> |
| 132 | </EncoderProfile> |
| 133 | |
| 134 | <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60"> |
| 135 | <Video codec="h264" |
| 136 | bitRate="12000000" |
| 137 | width="3840" |
| 138 | height="2160" |
| 139 | frameRate="30" /> |
| 140 | |
| 141 | <!-- Audio settings are not used for timealpse video recording --> |
| 142 | <Audio codec="aac" |
| 143 | bitRate="96000" |
| 144 | sampleRate="16000" |
| 145 | channels="1" /> |
| 146 | </EncoderProfile> |
| 147 | |
| 148 | <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60"> |
| 149 | <Video codec="h264" |
| 150 | bitRate="12000000" |
| 151 | width="1920" |
| 152 | height="1080" |
| 153 | frameRate="30" /> |
| 154 | |
| 155 | <!-- Audio settings are not used for timealpse video recording --> |
| 156 | <Audio codec="aac" |
| 157 | bitRate="96000" |
| 158 | sampleRate="16000" |
| 159 | channels="1" /> |
| 160 | </EncoderProfile> |
| 161 | |
| 162 | <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60"> |
| 163 | <Video codec="h264" |
| 164 | bitRate="8000000" |
| 165 | width="1280" |
| 166 | height="720" |
| 167 | frameRate="30" /> |
| 168 | |
| 169 | <!-- Audio settings are not used for timealpse video recording --> |
| 170 | <Audio codec="aac" |
| 171 | bitRate="96000" |
| 172 | sampleRate="16000" |
| 173 | channels="1" /> |
| 174 | </EncoderProfile> |
| 175 | |
| 176 | <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60"> |
| 177 | <Video codec="h264" |
| 178 | bitRate="3000000" |
| 179 | width="720" |
| 180 | height="480" |
| 181 | frameRate="30" /> |
| 182 | |
| 183 | <!-- Audio settings are not used for timealpse video recording --> |
| 184 | <Audio codec="aac" |
| 185 | bitRate="96000" |
| 186 | sampleRate="16000" |
| 187 | channels="1" /> |
| 188 | </EncoderProfile> |
| 189 | |
| 190 | <EncoderProfile quality="highspeed1080p" fileFormat="mp4" duration="60"> |
| 191 | <Video codec="h264" |
| 192 | bitRate="42000000" |
| 193 | width="1920" |
| 194 | height="1080" |
| 195 | frameRate="240" /> |
| 196 | |
| 197 | <!-- audio setting is ignored --> |
| 198 | <Audio codec="aac" |
| 199 | bitRate="96000" |
| 200 | sampleRate="48000" |
| 201 | channels="1" /> |
| 202 | </EncoderProfile> |
| 203 | |
| 204 | <ImageEncoding quality="90" /> |
| 205 | <ImageEncoding quality="80" /> |
| 206 | <ImageEncoding quality="70" /> |
| 207 | <ImageDecoding memCap="20000000" /> |
| 208 | |
| 209 | </CamcorderProfiles> |
| 210 | |
| 211 | <CamcorderProfiles cameraId="1"> |
| 212 | |
| 213 | <EncoderProfile quality="1080p" fileFormat="mp4" duration="60"> |
| 214 | <Video codec="h264" |
| 215 | bitRate="12000000" |
| 216 | width="1920" |
| 217 | height="1080" |
| 218 | frameRate="30" /> |
| 219 | |
| 220 | <Audio codec="aac" |
| 221 | bitRate="96000" |
| 222 | sampleRate="16000" |
| 223 | channels="1" /> |
| 224 | </EncoderProfile> |
| 225 | |
| 226 | <EncoderProfile quality="720p" fileFormat="mp4" duration="60"> |
| 227 | <Video codec="h264" |
| 228 | bitRate="8000000" |
| 229 | width="1280" |
| 230 | height="720" |
| 231 | frameRate="30" /> |
| 232 | |
| 233 | <Audio codec="aac" |
| 234 | bitRate="96000" |
| 235 | sampleRate="16000" |
| 236 | channels="1" /> |
| 237 | </EncoderProfile> |
| 238 | |
| 239 | <EncoderProfile quality="480p" fileFormat="mp4" duration="60"> |
| 240 | <Video codec="h264" |
| 241 | bitRate="3000000" |
| 242 | width="720" |
| 243 | height="480" |
| 244 | frameRate="30" /> |
| 245 | |
| 246 | <Audio codec="aac" |
| 247 | bitRate="96000" |
| 248 | sampleRate="16000" |
| 249 | channels="1" /> |
| 250 | </EncoderProfile> |
| 251 | |
| 252 | <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60"> |
| 253 | <Video codec="h264" |
| 254 | bitRate="12000000" |
| 255 | width="1920" |
| 256 | height="1080" |
| 257 | frameRate="30" /> |
| 258 | |
| 259 | <!-- Audio settings are not used for timealpse video recording --> |
| 260 | <Audio codec="aac" |
| 261 | bitRate="96000" |
| 262 | sampleRate="16000" |
| 263 | channels="1" /> |
| 264 | </EncoderProfile> |
| 265 | |
| 266 | <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60"> |
| 267 | <Video codec="h264" |
| 268 | bitRate="8000000" |
| 269 | width="1280" |
| 270 | height="720" |
| 271 | frameRate="30" /> |
| 272 | |
| 273 | <!-- Audio settings are not used for timealpse video recording --> |
| 274 | <Audio codec="aac" |
| 275 | bitRate="96000" |
| 276 | sampleRate="16000" |
| 277 | channels="1" /> |
| 278 | </EncoderProfile> |
| 279 | |
| 280 | <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60"> |
| 281 | <Video codec="h264" |
| 282 | bitRate="3000000" |
| 283 | width="720" |
| 284 | height="480" |
| 285 | frameRate="30" /> |
| 286 | |
| 287 | <!-- Audio settings are not used for timealpse video recording --> |
| 288 | <Audio codec="aac" |
| 289 | bitRate="96000" |
| 290 | sampleRate="16000" |
| 291 | channels="1" /> |
| 292 | </EncoderProfile> |
| 293 | |
| 294 | <ImageEncoding quality="90" /> |
| 295 | <ImageEncoding quality="80" /> |
| 296 | <ImageEncoding quality="70" /> |
| 297 | <ImageDecoding memCap="20000000" /> |
| 298 | |
| 299 | </CamcorderProfiles> |
| 300 | |
| 301 | <CamcorderProfiles cameraId="2"> |
| 302 | |
| 303 | <EncoderProfile quality="2160p" fileFormat="mp4" duration="60"> |
| 304 | <Video codec="h264" |
| 305 | bitRate="12000000" |
| 306 | width="3840" |
| 307 | height="2160" |
| 308 | frameRate="60" /> |
| 309 | |
| 310 | <Audio codec="aac" |
| 311 | bitRate="96000" |
| 312 | sampleRate="16000" |
| 313 | channels="1" /> |
| 314 | </EncoderProfile> |
| 315 | |
| 316 | <EncoderProfile quality="1080p" fileFormat="mp4" duration="60"> |
| 317 | <Video codec="h264" |
| 318 | bitRate="12000000" |
| 319 | width="1920" |
| 320 | height="1080" |
| 321 | frameRate="60" /> |
| 322 | |
| 323 | <Audio codec="aac" |
| 324 | bitRate="96000" |
| 325 | sampleRate="16000" |
| 326 | channels="1" /> |
| 327 | </EncoderProfile> |
| 328 | |
| 329 | <EncoderProfile quality="720p" fileFormat="mp4" duration="60"> |
| 330 | <Video codec="h264" |
| 331 | bitRate="8000000" |
| 332 | width="1280" |
| 333 | height="720" |
| 334 | frameRate="30" /> |
| 335 | |
| 336 | <Audio codec="aac" |
| 337 | bitRate="96000" |
| 338 | sampleRate="16000" |
| 339 | channels="1" /> |
| 340 | </EncoderProfile> |
| 341 | |
| 342 | <EncoderProfile quality="480p" fileFormat="mp4" duration="60"> |
| 343 | <Video codec="h264" |
| 344 | bitRate="3000000" |
| 345 | width="720" |
| 346 | height="480" |
| 347 | frameRate="30" /> |
| 348 | |
| 349 | <Audio codec="aac" |
| 350 | bitRate="96000" |
| 351 | sampleRate="16000" |
| 352 | channels="1" /> |
| 353 | </EncoderProfile> |
| 354 | |
| 355 | <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60"> |
| 356 | <Video codec="h264" |
| 357 | bitRate="12000000" |
| 358 | width="3840" |
| 359 | height="2160" |
| 360 | frameRate="30" /> |
| 361 | |
| 362 | <!-- Audio settings are not used for timealpse video recording --> |
| 363 | <Audio codec="aac" |
| 364 | bitRate="96000" |
| 365 | sampleRate="16000" |
| 366 | channels="1" /> |
| 367 | </EncoderProfile> |
| 368 | |
| 369 | <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60"> |
| 370 | <Video codec="h264" |
| 371 | bitRate="12000000" |
| 372 | width="1920" |
| 373 | height="1080" |
| 374 | frameRate="30" /> |
| 375 | |
| 376 | <!-- Audio settings are not used for timealpse video recording --> |
| 377 | <Audio codec="aac" |
| 378 | bitRate="96000" |
| 379 | sampleRate="16000" |
| 380 | channels="1" /> |
| 381 | </EncoderProfile> |
| 382 | |
| 383 | <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60"> |
| 384 | <Video codec="h264" |
| 385 | bitRate="8000000" |
| 386 | width="1280" |
| 387 | height="720" |
| 388 | frameRate="30" /> |
| 389 | |
| 390 | <!-- Audio settings are not used for timealpse video recording --> |
| 391 | <Audio codec="aac" |
| 392 | bitRate="96000" |
| 393 | sampleRate="16000" |
| 394 | channels="1" /> |
| 395 | </EncoderProfile> |
| 396 | |
| 397 | <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60"> |
| 398 | <Video codec="h264" |
| 399 | bitRate="3000000" |
| 400 | width="720" |
| 401 | height="480" |
| 402 | frameRate="30" /> |
| 403 | |
| 404 | <!-- Audio settings are not used for timealpse video recording --> |
| 405 | <Audio codec="aac" |
| 406 | bitRate="96000" |
| 407 | sampleRate="16000" |
| 408 | channels="1" /> |
| 409 | </EncoderProfile> |
| 410 | |
Robin Peng | cd374d8 | 2021-02-23 20:00:46 +0800 | [diff] [blame] | 411 | <ImageEncoding quality="90" /> |
| 412 | <ImageEncoding quality="80" /> |
| 413 | <ImageEncoding quality="70" /> |
| 414 | <ImageDecoding memCap="20000000" /> |
| 415 | |
| 416 | </CamcorderProfiles> |
| 417 | |
| 418 | <CamcorderProfiles cameraId="3"> |
| 419 | |
| 420 | <EncoderProfile quality="2160p" fileFormat="mp4" duration="60"> |
| 421 | <Video codec="h264" |
| 422 | bitRate="12000000" |
| 423 | width="3840" |
| 424 | height="2160" |
| 425 | frameRate="60" /> |
| 426 | |
| 427 | <Audio codec="aac" |
| 428 | bitRate="96000" |
| 429 | sampleRate="16000" |
| 430 | channels="1" /> |
| 431 | </EncoderProfile> |
| 432 | |
| 433 | <EncoderProfile quality="1080p" fileFormat="mp4" duration="60"> |
| 434 | <Video codec="h264" |
| 435 | bitRate="12000000" |
| 436 | width="1920" |
| 437 | height="1080" |
| 438 | frameRate="60" /> |
| 439 | |
| 440 | <Audio codec="aac" |
| 441 | bitRate="96000" |
| 442 | sampleRate="16000" |
| 443 | channels="1" /> |
| 444 | </EncoderProfile> |
| 445 | |
| 446 | <EncoderProfile quality="720p" fileFormat="mp4" duration="60"> |
| 447 | <Video codec="h264" |
| 448 | bitRate="8000000" |
| 449 | width="1280" |
| 450 | height="720" |
| 451 | frameRate="30" /> |
| 452 | |
| 453 | <Audio codec="aac" |
| 454 | bitRate="96000" |
| 455 | sampleRate="16000" |
| 456 | channels="1" /> |
| 457 | </EncoderProfile> |
| 458 | |
| 459 | <EncoderProfile quality="480p" fileFormat="mp4" duration="60"> |
| 460 | <Video codec="h264" |
| 461 | bitRate="3000000" |
| 462 | width="720" |
| 463 | height="480" |
| 464 | frameRate="30" /> |
| 465 | |
| 466 | <Audio codec="aac" |
| 467 | bitRate="96000" |
| 468 | sampleRate="16000" |
| 469 | channels="1" /> |
| 470 | </EncoderProfile> |
| 471 | |
| 472 | <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60"> |
| 473 | <Video codec="h264" |
| 474 | bitRate="12000000" |
| 475 | width="3840" |
| 476 | height="2160" |
| 477 | frameRate="30" /> |
| 478 | |
| 479 | <!-- Audio settings are not used for timealpse video recording --> |
| 480 | <Audio codec="aac" |
| 481 | bitRate="96000" |
| 482 | sampleRate="16000" |
| 483 | channels="1" /> |
| 484 | </EncoderProfile> |
| 485 | |
| 486 | <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60"> |
| 487 | <Video codec="h264" |
| 488 | bitRate="12000000" |
| 489 | width="1920" |
| 490 | height="1080" |
| 491 | frameRate="30" /> |
| 492 | |
| 493 | <!-- Audio settings are not used for timealpse video recording --> |
| 494 | <Audio codec="aac" |
| 495 | bitRate="96000" |
| 496 | sampleRate="16000" |
| 497 | channels="1" /> |
| 498 | </EncoderProfile> |
| 499 | |
| 500 | <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60"> |
| 501 | <Video codec="h264" |
| 502 | bitRate="8000000" |
| 503 | width="1280" |
| 504 | height="720" |
| 505 | frameRate="30" /> |
| 506 | |
| 507 | <!-- Audio settings are not used for timealpse video recording --> |
| 508 | <Audio codec="aac" |
| 509 | bitRate="96000" |
| 510 | sampleRate="16000" |
| 511 | channels="1" /> |
| 512 | </EncoderProfile> |
| 513 | |
| 514 | <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60"> |
| 515 | <Video codec="h264" |
| 516 | bitRate="3000000" |
| 517 | width="720" |
| 518 | height="480" |
| 519 | frameRate="30" /> |
| 520 | |
| 521 | <!-- Audio settings are not used for timealpse video recording --> |
| 522 | <Audio codec="aac" |
| 523 | bitRate="96000" |
| 524 | sampleRate="16000" |
| 525 | channels="1" /> |
| 526 | </EncoderProfile> |
| 527 | |
Robin Peng | cd374d8 | 2021-02-23 20:00:46 +0800 | [diff] [blame] | 528 | <ImageEncoding quality="90" /> |
| 529 | <ImageEncoding quality="80" /> |
| 530 | <ImageEncoding quality="70" /> |
| 531 | <ImageDecoding memCap="20000000" /> |
| 532 | |
| 533 | </CamcorderProfiles> |
| 534 | |
Sundong Ahn | a65c38d | 2021-04-08 17:28:17 +0900 | [diff] [blame^] | 535 | <CamcorderProfiles cameraId="4"> |
Robin Peng | cd374d8 | 2021-02-23 20:00:46 +0800 | [diff] [blame] | 536 | |
| 537 | <EncoderProfile quality="2160p" fileFormat="mp4" duration="60"> |
| 538 | <Video codec="h264" |
| 539 | bitRate="12000000" |
| 540 | width="3840" |
| 541 | height="2160" |
| 542 | frameRate="60" /> |
| 543 | |
| 544 | <Audio codec="aac" |
| 545 | bitRate="96000" |
| 546 | sampleRate="16000" |
| 547 | channels="1" /> |
| 548 | </EncoderProfile> |
| 549 | |
| 550 | <EncoderProfile quality="1080p" fileFormat="mp4" duration="60"> |
| 551 | <Video codec="h264" |
| 552 | bitRate="12000000" |
| 553 | width="1920" |
| 554 | height="1080" |
| 555 | frameRate="60" /> |
| 556 | |
| 557 | <Audio codec="aac" |
| 558 | bitRate="96000" |
| 559 | sampleRate="16000" |
| 560 | channels="1" /> |
| 561 | </EncoderProfile> |
| 562 | |
| 563 | <EncoderProfile quality="720p" fileFormat="mp4" duration="60"> |
| 564 | <Video codec="h264" |
| 565 | bitRate="8000000" |
| 566 | width="1280" |
| 567 | height="720" |
| 568 | frameRate="30" /> |
| 569 | |
| 570 | <Audio codec="aac" |
| 571 | bitRate="96000" |
| 572 | sampleRate="16000" |
| 573 | channels="1" /> |
| 574 | </EncoderProfile> |
| 575 | |
| 576 | <EncoderProfile quality="480p" fileFormat="mp4" duration="60"> |
| 577 | <Video codec="h264" |
| 578 | bitRate="3000000" |
| 579 | width="720" |
| 580 | height="480" |
| 581 | frameRate="30" /> |
| 582 | |
| 583 | <Audio codec="aac" |
| 584 | bitRate="96000" |
| 585 | sampleRate="16000" |
| 586 | channels="1" /> |
| 587 | </EncoderProfile> |
| 588 | |
| 589 | <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60"> |
| 590 | <Video codec="h264" |
| 591 | bitRate="12000000" |
| 592 | width="3840" |
| 593 | height="2160" |
| 594 | frameRate="30" /> |
| 595 | |
| 596 | <!-- Audio settings are not used for timealpse video recording --> |
| 597 | <Audio codec="aac" |
| 598 | bitRate="96000" |
| 599 | sampleRate="16000" |
| 600 | channels="1" /> |
| 601 | </EncoderProfile> |
| 602 | |
| 603 | <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60"> |
| 604 | <Video codec="h264" |
| 605 | bitRate="12000000" |
| 606 | width="1920" |
| 607 | height="1080" |
| 608 | frameRate="30" /> |
| 609 | |
| 610 | <!-- Audio settings are not used for timealpse video recording --> |
| 611 | <Audio codec="aac" |
| 612 | bitRate="96000" |
| 613 | sampleRate="16000" |
| 614 | channels="1" /> |
| 615 | </EncoderProfile> |
| 616 | |
| 617 | <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60"> |
| 618 | <Video codec="h264" |
| 619 | bitRate="8000000" |
| 620 | width="1280" |
| 621 | height="720" |
| 622 | frameRate="30" /> |
| 623 | |
| 624 | <!-- Audio settings are not used for timealpse video recording --> |
| 625 | <Audio codec="aac" |
| 626 | bitRate="96000" |
| 627 | sampleRate="16000" |
| 628 | channels="1" /> |
| 629 | </EncoderProfile> |
| 630 | |
| 631 | <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60"> |
| 632 | <Video codec="h264" |
| 633 | bitRate="3000000" |
| 634 | width="720" |
| 635 | height="480" |
| 636 | frameRate="30" /> |
| 637 | |
| 638 | <!-- Audio settings are not used for timealpse video recording --> |
| 639 | <Audio codec="aac" |
| 640 | bitRate="96000" |
| 641 | sampleRate="16000" |
| 642 | channels="1" /> |
| 643 | </EncoderProfile> |
| 644 | |
| 645 | <ImageEncoding quality="90" /> |
| 646 | <ImageEncoding quality="80" /> |
| 647 | <ImageEncoding quality="70" /> |
| 648 | <ImageDecoding memCap="20000000" /> |
| 649 | |
| 650 | </CamcorderProfiles> |
| 651 | |
| 652 | <CamcorderProfiles cameraId="5"> |
| 653 | |
| 654 | <EncoderProfile quality="2160p" fileFormat="mp4" duration="60"> |
| 655 | <Video codec="h264" |
| 656 | bitRate="12000000" |
| 657 | width="3840" |
| 658 | height="2160" |
| 659 | frameRate="30" /> |
| 660 | |
| 661 | <Audio codec="aac" |
| 662 | bitRate="96000" |
| 663 | sampleRate="16000" |
| 664 | channels="1" /> |
| 665 | </EncoderProfile> |
| 666 | |
| 667 | <EncoderProfile quality="1080p" fileFormat="mp4" duration="60"> |
| 668 | <Video codec="h264" |
| 669 | bitRate="12000000" |
| 670 | width="1920" |
| 671 | height="1080" |
| 672 | frameRate="30" /> |
| 673 | |
| 674 | <Audio codec="aac" |
| 675 | bitRate="96000" |
| 676 | sampleRate="16000" |
| 677 | channels="1" /> |
| 678 | </EncoderProfile> |
| 679 | |
| 680 | <EncoderProfile quality="720p" fileFormat="mp4" duration="60"> |
| 681 | <Video codec="h264" |
| 682 | bitRate="8000000" |
| 683 | width="1280" |
| 684 | height="720" |
| 685 | frameRate="30" /> |
| 686 | |
| 687 | <Audio codec="aac" |
| 688 | bitRate="96000" |
| 689 | sampleRate="16000" |
| 690 | channels="1" /> |
| 691 | </EncoderProfile> |
| 692 | |
| 693 | <EncoderProfile quality="480p" fileFormat="mp4" duration="60"> |
| 694 | <Video codec="h264" |
| 695 | bitRate="3000000" |
| 696 | width="720" |
| 697 | height="480" |
| 698 | frameRate="30" /> |
| 699 | |
| 700 | <Audio codec="aac" |
| 701 | bitRate="96000" |
| 702 | sampleRate="16000" |
| 703 | channels="1" /> |
| 704 | </EncoderProfile> |
| 705 | |
| 706 | <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60"> |
| 707 | <Video codec="h264" |
| 708 | bitRate="12000000" |
| 709 | width="3840" |
| 710 | height="2160" |
| 711 | frameRate="30" /> |
| 712 | |
| 713 | <!-- Audio settings are not used for timealpse video recording --> |
| 714 | <Audio codec="aac" |
| 715 | bitRate="96000" |
| 716 | sampleRate="16000" |
| 717 | channels="1" /> |
| 718 | </EncoderProfile> |
| 719 | |
| 720 | <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60"> |
| 721 | <Video codec="h264" |
| 722 | bitRate="12000000" |
| 723 | width="1920" |
| 724 | height="1080" |
| 725 | frameRate="30" /> |
| 726 | |
| 727 | <!-- Audio settings are not used for timealpse video recording --> |
| 728 | <Audio codec="aac" |
| 729 | bitRate="96000" |
| 730 | sampleRate="16000" |
| 731 | channels="1" /> |
| 732 | </EncoderProfile> |
| 733 | |
| 734 | <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60"> |
| 735 | <Video codec="h264" |
| 736 | bitRate="8000000" |
| 737 | width="1280" |
| 738 | height="720" |
| 739 | frameRate="30" /> |
| 740 | |
| 741 | <!-- Audio settings are not used for timealpse video recording --> |
| 742 | <Audio codec="aac" |
| 743 | bitRate="96000" |
| 744 | sampleRate="16000" |
| 745 | channels="1" /> |
| 746 | </EncoderProfile> |
| 747 | |
| 748 | <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60"> |
| 749 | <Video codec="h264" |
| 750 | bitRate="3000000" |
| 751 | width="720" |
| 752 | height="480" |
| 753 | frameRate="30" /> |
| 754 | |
| 755 | <!-- Audio settings are not used for timealpse video recording --> |
| 756 | <Audio codec="aac" |
| 757 | bitRate="96000" |
| 758 | sampleRate="16000" |
| 759 | channels="1" /> |
| 760 | </EncoderProfile> |
| 761 | |
| 762 | <ImageEncoding quality="90" /> |
| 763 | <ImageEncoding quality="80" /> |
| 764 | <ImageEncoding quality="70" /> |
| 765 | <ImageDecoding memCap="20000000" /> |
| 766 | |
| 767 | </CamcorderProfiles> |
| 768 | |
| 769 | <CamcorderProfiles cameraId="6"> |
| 770 | |
| 771 | <EncoderProfile quality="2160p" fileFormat="mp4" duration="60"> |
| 772 | <Video codec="h264" |
| 773 | bitRate="12000000" |
| 774 | width="3840" |
| 775 | height="2160" |
| 776 | frameRate="30" /> |
| 777 | |
| 778 | <Audio codec="aac" |
| 779 | bitRate="96000" |
| 780 | sampleRate="16000" |
| 781 | channels="1" /> |
| 782 | </EncoderProfile> |
| 783 | |
| 784 | <EncoderProfile quality="1080p" fileFormat="mp4" duration="60"> |
| 785 | <Video codec="h264" |
| 786 | bitRate="12000000" |
| 787 | width="1920" |
| 788 | height="1080" |
| 789 | frameRate="30" /> |
| 790 | |
| 791 | <Audio codec="aac" |
| 792 | bitRate="96000" |
| 793 | sampleRate="16000" |
| 794 | channels="1" /> |
| 795 | </EncoderProfile> |
| 796 | |
| 797 | <EncoderProfile quality="720p" fileFormat="mp4" duration="60"> |
| 798 | <Video codec="h264" |
| 799 | bitRate="8000000" |
| 800 | width="1280" |
| 801 | height="720" |
| 802 | frameRate="30" /> |
| 803 | |
| 804 | <Audio codec="aac" |
| 805 | bitRate="96000" |
| 806 | sampleRate="16000" |
| 807 | channels="1" /> |
| 808 | </EncoderProfile> |
| 809 | |
| 810 | <EncoderProfile quality="480p" fileFormat="mp4" duration="60"> |
| 811 | <Video codec="h264" |
| 812 | bitRate="3000000" |
| 813 | width="720" |
| 814 | height="480" |
| 815 | frameRate="30" /> |
| 816 | |
| 817 | <Audio codec="aac" |
| 818 | bitRate="96000" |
| 819 | sampleRate="16000" |
| 820 | channels="1" /> |
| 821 | </EncoderProfile> |
| 822 | |
| 823 | <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60"> |
| 824 | <Video codec="h264" |
| 825 | bitRate="12000000" |
| 826 | width="3840" |
| 827 | height="2160" |
| 828 | frameRate="30" /> |
| 829 | |
| 830 | <!-- Audio settings are not used for timealpse video recording --> |
| 831 | <Audio codec="aac" |
| 832 | bitRate="96000" |
| 833 | sampleRate="16000" |
| 834 | channels="1" /> |
| 835 | </EncoderProfile> |
| 836 | |
| 837 | <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60"> |
| 838 | <Video codec="h264" |
| 839 | bitRate="12000000" |
| 840 | width="1920" |
| 841 | height="1080" |
| 842 | frameRate="30" /> |
| 843 | |
| 844 | <!-- Audio settings are not used for timealpse video recording --> |
| 845 | <Audio codec="aac" |
| 846 | bitRate="96000" |
| 847 | sampleRate="16000" |
| 848 | channels="1" /> |
| 849 | </EncoderProfile> |
| 850 | |
| 851 | <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60"> |
| 852 | <Video codec="h264" |
| 853 | bitRate="8000000" |
| 854 | width="1280" |
| 855 | height="720" |
| 856 | frameRate="30" /> |
| 857 | |
| 858 | <!-- Audio settings are not used for timealpse video recording --> |
| 859 | <Audio codec="aac" |
| 860 | bitRate="96000" |
| 861 | sampleRate="16000" |
| 862 | channels="1" /> |
| 863 | </EncoderProfile> |
| 864 | |
| 865 | <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60"> |
| 866 | <Video codec="h264" |
| 867 | bitRate="3000000" |
| 868 | width="720" |
| 869 | height="480" |
| 870 | frameRate="30" /> |
| 871 | |
| 872 | <!-- Audio settings are not used for timealpse video recording --> |
| 873 | <Audio codec="aac" |
| 874 | bitRate="96000" |
| 875 | sampleRate="16000" |
| 876 | channels="1" /> |
| 877 | </EncoderProfile> |
| 878 | |
| 879 | <ImageEncoding quality="90" /> |
| 880 | <ImageEncoding quality="80" /> |
| 881 | <ImageEncoding quality="70" /> |
| 882 | <ImageDecoding memCap="20000000" /> |
| 883 | |
| 884 | </CamcorderProfiles> |
| 885 | |
| 886 | |
| 887 | <CamcorderProfiles cameraId="7"> |
| 888 | |
| 889 | <EncoderProfile quality="1080p" fileFormat="mp4" duration="60"> |
| 890 | <Video codec="h264" |
| 891 | bitRate="12000000" |
| 892 | width="1920" |
| 893 | height="1080" |
| 894 | frameRate="30" /> |
| 895 | |
| 896 | <Audio codec="aac" |
| 897 | bitRate="96000" |
| 898 | sampleRate="16000" |
| 899 | channels="1" /> |
| 900 | </EncoderProfile> |
| 901 | |
| 902 | <EncoderProfile quality="720p" fileFormat="mp4" duration="60"> |
| 903 | <Video codec="h264" |
| 904 | bitRate="8000000" |
| 905 | width="1280" |
| 906 | height="720" |
| 907 | frameRate="30" /> |
| 908 | |
| 909 | <Audio codec="aac" |
| 910 | bitRate="96000" |
| 911 | sampleRate="16000" |
| 912 | channels="1" /> |
| 913 | </EncoderProfile> |
| 914 | |
| 915 | <EncoderProfile quality="480p" fileFormat="mp4" duration="60"> |
| 916 | <Video codec="h264" |
| 917 | bitRate="3000000" |
| 918 | width="720" |
| 919 | height="480" |
| 920 | frameRate="30" /> |
| 921 | |
| 922 | <Audio codec="aac" |
| 923 | bitRate="96000" |
| 924 | sampleRate="16000" |
| 925 | channels="1" /> |
| 926 | </EncoderProfile> |
| 927 | |
| 928 | <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60"> |
| 929 | <Video codec="h264" |
| 930 | bitRate="12000000" |
| 931 | width="1920" |
| 932 | height="1080" |
| 933 | frameRate="30" /> |
| 934 | |
| 935 | <!-- Audio settings are not used for timealpse video recording --> |
| 936 | <Audio codec="aac" |
| 937 | bitRate="96000" |
| 938 | sampleRate="16000" |
| 939 | channels="1" /> |
| 940 | </EncoderProfile> |
| 941 | |
| 942 | <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60"> |
| 943 | <Video codec="h264" |
| 944 | bitRate="8000000" |
| 945 | width="1280" |
| 946 | height="720" |
| 947 | frameRate="30" /> |
| 948 | |
| 949 | <!-- Audio settings are not used for timealpse video recording --> |
| 950 | <Audio codec="aac" |
| 951 | bitRate="96000" |
| 952 | sampleRate="16000" |
| 953 | channels="1" /> |
| 954 | </EncoderProfile> |
| 955 | |
| 956 | <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60"> |
| 957 | <Video codec="h264" |
| 958 | bitRate="3000000" |
| 959 | width="720" |
| 960 | height="480" |
| 961 | frameRate="30" /> |
| 962 | |
| 963 | <!-- Audio settings are not used for timealpse video recording --> |
| 964 | <Audio codec="aac" |
| 965 | bitRate="96000" |
| 966 | sampleRate="16000" |
| 967 | channels="1" /> |
| 968 | </EncoderProfile> |
| 969 | |
| 970 | <ImageEncoding quality="90" /> |
| 971 | <ImageEncoding quality="80" /> |
| 972 | <ImageEncoding quality="70" /> |
| 973 | <ImageDecoding memCap="20000000" /> |
| 974 | |
| 975 | </CamcorderProfiles> |
| 976 | |
| 977 | <EncoderOutputFileFormat name="3gp" /> |
| 978 | <EncoderOutputFileFormat name="mp4" /> |
| 979 | |
| 980 | <!-- |
| 981 | If a codec is not enabled, it is invisible to the applications |
| 982 | In other words, the applications won't be able to use the codec |
| 983 | or query the capabilities of the codec at all if it is disabled |
| 984 | --> |
| 985 | |
| 986 | <!-- |
| 987 | FIXME : we only check Mpeg4 encorder cap and other codec doesn't check |
| 988 | codec cap |
| 989 | --> |
| 990 | <VideoEncoderCap name="h264" enabled="true" |
| 991 | minBitRate="64000" maxBitRate="12000000" |
| 992 | minFrameWidth="128" maxFrameWidth="3840" |
| 993 | minFrameHeight="96" maxFrameHeight="2160" |
| 994 | minFrameRate="15" maxFrameRate="60" /> |
| 995 | |
| 996 | <VideoEncoderCap name="h263" enabled="true" |
| 997 | minBitRate="64000" maxBitRate="1000000" |
| 998 | minFrameWidth="128" maxFrameWidth="1920" |
| 999 | minFrameHeight="96" maxFrameHeight="1080" |
| 1000 | minFrameRate="15" maxFrameRate="30" /> |
| 1001 | |
| 1002 | <VideoEncoderCap name="m4v" enabled="true" |
| 1003 | minBitRate="64000" maxBitRate="2000000" |
| 1004 | minFrameWidth="128" maxFrameWidth="1920" |
| 1005 | minFrameHeight="96" maxFrameHeight="1080" |
| 1006 | minFrameRate="15" maxFrameRate="30" /> |
| 1007 | |
| 1008 | <AudioEncoderCap name="aac" enabled="true" |
| 1009 | minBitRate="758" maxBitRate="288000" |
| 1010 | minSampleRate="8000" maxSampleRate="48000" |
| 1011 | minChannels="1" maxChannels="1" /> |
| 1012 | |
| 1013 | <AudioEncoderCap name="heaac" enabled="true" |
| 1014 | minBitRate="8000" maxBitRate="64000" |
| 1015 | minSampleRate="16000" maxSampleRate="48000" |
| 1016 | minChannels="1" maxChannels="1" /> |
| 1017 | |
| 1018 | <AudioEncoderCap name="aaceld" enabled="true" |
| 1019 | minBitRate="16000" maxBitRate="192000" |
| 1020 | minSampleRate="16000" maxSampleRate="48000" |
| 1021 | minChannels="1" maxChannels="1" /> |
| 1022 | |
| 1023 | <AudioEncoderCap name="amrwb" enabled="true" |
| 1024 | minBitRate="6600" maxBitRate="23050" |
| 1025 | minSampleRate="16000" maxSampleRate="16000" |
| 1026 | minChannels="1" maxChannels="1" /> |
| 1027 | |
| 1028 | <AudioEncoderCap name="amrnb" enabled="true" |
| 1029 | minBitRate="5525" maxBitRate="12200" |
| 1030 | minSampleRate="8000" maxSampleRate="8000" |
| 1031 | minChannels="1" maxChannels="1" /> |
| 1032 | |
| 1033 | <!-- |
| 1034 | FIXME: |
| 1035 | We do not check decoder capabilities at present |
| 1036 | At present, we only check whether windows media is visible |
| 1037 | for TEST applications. For other applications, we do |
| 1038 | not perform any checks at all. |
| 1039 | --> |
| 1040 | <VideoDecoderCap name="wmv" enabled="false"/> |
| 1041 | <AudioDecoderCap name="wma" enabled="false"/> |
| 1042 | </MediaSettings> |