diff options
Diffstat (limited to 'shared')
-rw-r--r-- | shared/models/videos/video-resolution.enum.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/models/videos/video-resolution.enum.ts b/shared/models/videos/video-resolution.enum.ts index 98ab3eed2..06e077961 100644 --- a/shared/models/videos/video-resolution.enum.ts +++ b/shared/models/videos/video-resolution.enum.ts | |||
@@ -46,12 +46,12 @@ function getBaseBitrate (resolution: VideoResolution) { | |||
46 | case VideoResolution.H_1080P: | 46 | case VideoResolution.H_1080P: |
47 | // quality according to Google Live Encoder: 3000 - 6000 Kbps | 47 | // quality according to Google Live Encoder: 3000 - 6000 Kbps |
48 | // Quality according to YouTube Video Info: 5081 Kbps | 48 | // Quality according to YouTube Video Info: 5081 Kbps |
49 | return 5800 * 1000 | 49 | return 5200 * 1000 |
50 | 50 | ||
51 | case VideoResolution.H_4K: // fallthrough | 51 | case VideoResolution.H_4K: // fallthrough |
52 | default: | 52 | default: |
53 | // quality according to Google Live Encoder: 13000 - 34000 Kbps | 53 | // quality according to Google Live Encoder: 13000 - 34000 Kbps |
54 | return 15000 * 1000 | 54 | return 22000 * 1000 |
55 | } | 55 | } |
56 | } | 56 | } |
57 | 57 | ||