Files
appwrite/app/config/videos-profiles.php
2023-05-14 10:30:29 +03:00

49 lines
1.0 KiB
PHP

<?php
return [
[
'name' => '360p',
'videoBitRate' => 890, //video BitRate in Kbps
'audioBitRate' => 64, //audio BitRate in Kbps
'width' => 640, //width resolution in px
'height' => 360, //height resolution in px
],
[
'name' => '480p',
'videoBitRate' => 2100,
'audioBitRate' => 64,
'width' => 854,
'height' => 480,
],
[
'name' => '576p',
'videoBitRate' => 2538,
'audioBitRate' => 128,
'width' => 1024,
'height' => 576,
],
[
'name' => '720p',
'videoBitRate' => 3551,
'audioBitRate' => 128,
'width' => 1280,
'height' => 720,
],
[
'name' => '1080p',
'videoBitRate' => 4800,
'audioBitRate' => 128,
'width' => 1920,
'height' => 1080,
],
[
'name' => '2160p',
'videoBitRate' => 16000,
'audioBitRate' => 356,
'width' => 4096,
'height' => 2160,
],
];