]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-resolution.enum.ts
Add CLI plugins tests
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-resolution.enum.ts
CommitLineData
edb4ffc7
FA
1import { VideoTranscodingFPS } from './video-transcoding-fps.model'
2
40298b02 3export enum VideoResolution {
40298b02
C
4 H_240P = 240,
5 H_360P = 360,
6 H_480P = 480,
7 H_720P = 720,
ad3405d0
C
8 H_1080P = 1080,
9 H_4K = 2160
40298b02 10}
edb4ffc7
FA
11
12/**
7f196c93
FA
13 * Bitrate targets for different resolutions, at VideoTranscodingFPS.AVERAGE.
14 *
edb4ffc7
FA
15 * Sources for individual quality levels:
16 * Google Live Encoder: https://support.google.com/youtube/answer/2853702?hl=en
17 * YouTube Video Info (tested with random music video): https://www.h3xed.com/blogmedia/youtube-info.php
18 */
c1978779 19function getBaseBitrate (resolution: VideoResolution) {
edb4ffc7 20 switch (resolution) {
9b474844
C
21 case VideoResolution.H_240P:
22 // quality according to Google Live Encoder: 300 - 700 Kbps
23 // Quality according to YouTube Video Info: 186 Kbps
24 return 250 * 1000
25
26 case VideoResolution.H_360P:
27 // quality according to Google Live Encoder: 400 - 1,000 Kbps
28 // Quality according to YouTube Video Info: 480 Kbps
29 return 500 * 1000
30
31 case VideoResolution.H_480P:
32 // quality according to Google Live Encoder: 500 - 2,000 Kbps
33 // Quality according to YouTube Video Info: 879 Kbps
34 return 900 * 1000
35
36 case VideoResolution.H_720P:
37 // quality according to Google Live Encoder: 1,500 - 4,000 Kbps
38 // Quality according to YouTube Video Info: 1752 Kbps
39 return 1750 * 1000
40
41 case VideoResolution.H_1080P:
42 // quality according to Google Live Encoder: 3000 - 6000 Kbps
43 // Quality according to YouTube Video Info: 3277 Kbps
44 return 3300 * 1000
45
46 case VideoResolution.H_4K: // fallthrough
47 default:
48 // quality according to Google Live Encoder: 13000 - 34000 Kbps
49 return 15000 * 1000
edb4ffc7
FA
50 }
51}
52
7f196c93
FA
53/**
54 * Calculate the target bitrate based on video resolution and FPS.
2f71dcf8
FA
55 *
56 * The calculation is based on two values:
57 * Bitrate at VideoTranscodingFPS.AVERAGE is always the same as
58 * getBaseBitrate(). Bitrate at VideoTranscodingFPS.MAX is always
59 * getBaseBitrate() * 1.4. All other values are calculated linearly
60 * between these two points.
7f196c93 61 */
0229b014 62export function getTargetBitrate (resolution: VideoResolution, fps: number, fpsTranscodingConstants: VideoTranscodingFPS) {
7f196c93
FA
63 const baseBitrate = getBaseBitrate(resolution)
64 // The maximum bitrate, used when fps === VideoTranscodingFPS.MAX
65 // Based on numbers from Youtube, 60 fps bitrate divided by 30 fps bitrate:
2f71dcf8
FA
66 // 720p: 2600 / 1750 = 1.49
67 // 1080p: 4400 / 3300 = 1.33
7f196c93
FA
68 const maxBitrate = baseBitrate * 1.4
69 const maxBitrateDifference = maxBitrate - baseBitrate
70 const maxFpsDifference = fpsTranscodingConstants.MAX - fpsTranscodingConstants.AVERAGE
71 // For 1080p video with default settings, this results in the following formula:
72 // 3300 + (x - 30) * (1320/30)
e243c38c
FA
73 // Example outputs:
74 // 1080p10: 2420 kbps, 1080p30: 3300 kbps, 1080p60: 4620 kbps
2f71dcf8 75 // 720p10: 1283 kbps, 720p30: 1750 kbps, 720p60: 2450 kbps
7f196c93
FA
76 return baseBitrate + (fps - fpsTranscodingConstants.AVERAGE) * (maxBitrateDifference / maxFpsDifference)
77}
78
edb4ffc7
FA
79/**
80 * The maximum bitrate we expect to see on a transcoded video in bytes per second.
81 */
0229b014 82export function getMaxBitrate (resolution: VideoResolution, fps: number, fpsTranscodingConstants: VideoTranscodingFPS) {
edb4ffc7
FA
83 return getTargetBitrate(resolution, fps, fpsTranscodingConstants) * 2
84}