diff options
Diffstat (limited to 'src/caelestia/subcommands')
| -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, |