aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/core-utils
diff options
context:
space:
mode:
authorFlorian CUNY <poslovitch@bentobox.world>2021-11-05 10:23:02 +0100
committerGitHub <noreply@github.com>2021-11-05 10:23:02 +0100
commit8dd754c76735417305c4b68e2ada6f623e9d7650 (patch)
treeac08054cc81f7aff812e175443298f287f66b96d /shared/core-utils
parentdd6d2a7ce50e7ff02e00995ccc87f8f929ad9709 (diff)
downloadPeerTube-8dd754c76735417305c4b68e2ada6f623e9d7650.tar.gz
PeerTube-8dd754c76735417305c4b68e2ada6f623e9d7650.tar.zst
PeerTube-8dd754c76735417305c4b68e2ada6f623e9d7650.zip
Added 144p encoding (#4492)
* Added 144p encoding Implements https://github.com/Chocobozzz/PeerTube/issues/4428 * Fixed typo in core-utils * Increased BitPerPixel for 144p * Disabled 144p by default in test.yaml * Another try at fixing tests * Fixed test in video-transcoder (api-3) * Fixed test in video-imports (api-4) * Fixed test in live-constraints (api-2) * Tried to fix tests in api-3 again * Revert "Tried to fix tests in api-3 again" This reverts commit 266e1143fa37f333d149c2c2791c7bd33621ac14. * Fixed test in config.ts (api-2) * Try to fix test in video-hls.ts (api-3) * Fixed test in video-transcoder.ts (api-3) * Fix tests Co-authored-by: Chocobozzz <me@florianbigard.com>
Diffstat (limited to 'shared/core-utils')
-rw-r--r--shared/core-utils/videos/bitrate.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/shared/core-utils/videos/bitrate.ts b/shared/core-utils/videos/bitrate.ts
index a6712f8a4..18c6e2f6c 100644
--- a/shared/core-utils/videos/bitrate.ts
+++ b/shared/core-utils/videos/bitrate.ts
@@ -6,6 +6,7 @@ type BitPerPixel = { [ id in VideoResolution ]: number }
6 6
7const averageBitPerPixel: BitPerPixel = { 7const averageBitPerPixel: BitPerPixel = {
8 [VideoResolution.H_NOVIDEO]: 0, 8 [VideoResolution.H_NOVIDEO]: 0,
9 [VideoResolution.H_144P]: 0.19,
9 [VideoResolution.H_240P]: 0.17, 10 [VideoResolution.H_240P]: 0.17,
10 [VideoResolution.H_360P]: 0.15, 11 [VideoResolution.H_360P]: 0.15,
11 [VideoResolution.H_480P]: 0.12, 12 [VideoResolution.H_480P]: 0.12,
@@ -17,6 +18,7 @@ const averageBitPerPixel: BitPerPixel = {
17 18
18const maxBitPerPixel: BitPerPixel = { 19const maxBitPerPixel: BitPerPixel = {
19 [VideoResolution.H_NOVIDEO]: 0, 20 [VideoResolution.H_NOVIDEO]: 0,
21 [VideoResolution.H_144P]: 0.32,
20 [VideoResolution.H_240P]: 0.29, 22 [VideoResolution.H_240P]: 0.29,
21 [VideoResolution.H_360P]: 0.26, 23 [VideoResolution.H_360P]: 0.26,
22 [VideoResolution.H_480P]: 0.22, 24 [VideoResolution.H_480P]: 0.22,
@@ -73,6 +75,7 @@ function calculateBitrate (options: {
73 VideoResolution.H_480P, 75 VideoResolution.H_480P,
74 VideoResolution.H_360P, 76 VideoResolution.H_360P,
75 VideoResolution.H_240P, 77 VideoResolution.H_240P,
78 VideoResolution.H_144P,
76 VideoResolution.H_NOVIDEO 79 VideoResolution.H_NOVIDEO
77 ] 80 ]
78 81