From 40140a864483d9e8eab5b30121b22fc69cc105f9 Mon Sep 17 00:00:00 2001 From: MarioFPV <57532232+MarioFPVdev@users.noreply.github.com> Date: Mon, 2 Mar 2026 10:13:15 +0000 Subject: [PATCH] Update camera bitrate options in gsmenu.sh Video bitrate is primarily measured in Kilobits per second (Kbps), where the industry standard almost universally defines "kilo" using the decimal system (1,000 bits), not the binary system (1,024 bits). Therefore, 1 Mbps is generally considered 1,000 Kbps. --- package/pixelpilot/files/gsmenu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/pixelpilot/files/gsmenu.sh b/package/pixelpilot/files/gsmenu.sh index 8fa858a..825e561 100755 --- a/package/pixelpilot/files/gsmenu.sh +++ b/package/pixelpilot/files/gsmenu.sh @@ -199,7 +199,7 @@ case "$@" in echo -n -e "60\n90\n120" ;; "values air camera bitrate") - echo -n -e "1024\n2048\n3072\n4096\n5120\n6144\n7168\n8192\n9216\n10240\n11264\n12288\n13312\n14336\n15360\n16384\n17408\n18432\n19456\n20480\n21504\n22528\n23552\n24576\n25600\n26624\n27648\n28672\n29692\n30720" + echo -n -e "1000\n2000\n3000\n4000\n5000\n6000\n7000\n8000\n9000\n10000\n11000\n12000\n13000\n14000\n15000\n16000\n17000\n18000\n19000\n20000\n21000\n22000\n23000\n24000\n25000\n26000\n27000\n28000\n29000\n30000" ;; "values air camera codec") echo -n -e "h264\nh265"