From 3efb879cdfff1bf6abe1e4650dc54b75f1c1f74d Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Fri, 14 Feb 2025 12:27:06 +0100 Subject: [PATCH] spot: up audio bitrate a bit --- spot/entrypoints/offscreen/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spot/entrypoints/offscreen/main.js b/spot/entrypoints/offscreen/main.js index 8c2599b79..8c2a48840 100644 --- a/spot/entrypoints/offscreen/main.js +++ b/spot/entrypoints/offscreen/main.js @@ -8,7 +8,7 @@ function getRecordingSettings(qualityValue) { "4k": { audioBitsPerSecond: 192000, videoBitsPerSecond: 40000000, width: 4096, height: 2160 }, "1080p": { audioBitsPerSecond: 192000, videoBitsPerSecond: 8000000, width: 1920, height: 1080 }, // @default - "720p": { audioBitsPerSecond: 96000, videoBitsPerSecond: 2500000, width: 1280, height: 720 }, + "720p": { audioBitsPerSecond: 128000, videoBitsPerSecond: 2500000, width: 1280, height: 720 }, "480p": { audioBitsPerSecond: 96000, videoBitsPerSecond: 2500000, width: 854, height: 480 }, "360p": { audioBitsPerSecond: 96000, videoBitsPerSecond: 1000000, width: 640, height: 360 }, "240p": { audioBitsPerSecond: 64000, videoBitsPerSecond: 500000, width: 426, height: 240 },