diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-23 18:29:28 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-23 18:29:28 +1000 |
| commit | 882adb2c6c4835943e0c243f122b0959db9963f8 (patch) | |
| tree | 3ab3b7445072dc94b7edbb5a0bb8e96264bb9c8d /src/caelestia | |
| parent | shell: remove default log rules (diff) | |
| download | caelestia-cli-882adb2c6c4835943e0c243f122b0959db9963f8.tar.gz caelestia-cli-882adb2c6c4835943e0c243f122b0959db9963f8.tar.bz2 caelestia-cli-882adb2c6c4835943e0c243f122b0959db9963f8.zip | |
record: don't use hevc codec
Cause incompatible with some players (mainly discord)
Diffstat (limited to 'src/caelestia')
| -rw-r--r-- | src/caelestia/subcommands/record.py | 2 |
1 files changed, 1 insertions, 1 deletions
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, |