diff options
| author | metamuffin <metamuffin@disroot.org> | 2023-10-02 23:53:29 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2023-10-02 23:53:29 +0200 |
| commit | 985d94d1a9a2712f51dc41a0312f9a7053211e85 (patch) | |
| tree | 7479035c95f2dfb3ad1925622d9132aa29beaaff /common/src | |
| parent | 1f11c16aefe71d68605d2cd0ad5da9c016aa3570 (diff) | |
| download | jellything-985d94d1a9a2712f51dc41a0312f9a7053211e85.tar jellything-985d94d1a9a2712f51dc41a0312f9a7053211e85.tar.bz2 jellything-985d94d1a9a2712f51dc41a0312f9a7053211e85.tar.zst | |
"working" adaptive br with hardcoded remux br
Diffstat (limited to 'common/src')
| -rw-r--r-- | common/src/config.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/common/src/config.rs b/common/src/config.rs index 2666d17..65d7326 100644 --- a/common/src/config.rs +++ b/common/src/config.rs @@ -69,9 +69,15 @@ mod default { EncodingProfile::Video { codec: "libsvtav1".to_string(), preset: 8, - bitrate: 1_500_000, + bitrate: 1_200_000, width: 1280, }, + EncodingProfile::Video { + codec: "libsvtav1".to_string(), + preset: 8, + bitrate: 300_000, + width: 640, + }, EncodingProfile::Audio { codec: "libopus".to_string(), bitrate: 128_000, |