From 882adb2c6c4835943e0c243f122b0959db9963f8 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Wed, 23 Jul 2025 18:29:28 +1000 Subject: record: don't use hevc codec Cause incompatible with some players (mainly discord) --- src/caelestia/subcommands/record.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/caelestia/subcommands/record.py b/src/caelestia/subcommands/record.py index e287f7b..69c961e 100644 --- a/src/caelestia/subcommands/record.py +++ b/src/caelestia/subcommands/record.py @@ -41,7 +41,7 @@ class Command: recording_path.parent.mkdir(parents=True, exist_ok=True) proc = subprocess.Popen( - ["wl-screenrec", *args, "--codec", "hevc", "-f", recording_path], + ["wl-screenrec", *args, "-f", recording_path], stderr=subprocess.PIPE, text=True, start_new_session=True, -- cgit v1.2.3-freya