summaryrefslogtreecommitdiff
path: root/src/caelestia/subcommands/record.py
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-14 22:50:55 +1000
committerGitHub <noreply@github.com>2025-06-14 22:50:55 +1000
commitee7291b7f64a359d17eb1d050086ef5357d79055 (patch)
treef1c200d8c8ba81030cbb2113a2be122db6508c8f /src/caelestia/subcommands/record.py
parentMerge pull request #5 from dalpax/patch-1 (diff)
parentMerge branch 'main' into python-rework (diff)
downloadcaelestia-cli-ee7291b7f64a359d17eb1d050086ef5357d79055.tar.gz
caelestia-cli-ee7291b7f64a359d17eb1d050086ef5357d79055.tar.bz2
caelestia-cli-ee7291b7f64a359d17eb1d050086ef5357d79055.zip
Merge pull request #6 from caelestia-dots/python-rework
feat: rewrite in python
Diffstat (limited to 'src/caelestia/subcommands/record.py')
-rw-r--r--src/caelestia/subcommands/record.py122
1 files changed, 122 insertions, 0 deletions
diff --git a/src/caelestia/subcommands/record.py b/src/caelestia/subcommands/record.py
new file mode 100644
index 0000000..a4fa51d
--- /dev/null
+++ b/src/caelestia/subcommands/record.py
@@ -0,0 +1,122 @@
+import subprocess
+import time
+from argparse import Namespace
+from datetime import datetime
+
+from caelestia.utils.paths import recording_notif_path, recording_path, recordings_dir
+
+
+class Command:
+ args: Namespace
+
+ def __init__(self, args: Namespace) -> None:
+ self.args = args
+
+ def run(self) -> None:
+ proc = subprocess.run(["pidof", "wl-screenrec"])
+ if proc.returncode == 0:
+ self.stop()
+ else:
+ self.start()
+
+ def start(self) -> None:
+ args = []
+
+ if self.args.region:
+ if self.args.region == "slurp":
+ region = subprocess.check_output(["slurp"], text=True)
+ else:
+ region = self.args.region
+ args += ["-g", region.strip()]
+
+ if self.args.sound:
+ sources = subprocess.check_output(["pactl", "list", "short", "sources"], text=True).splitlines()
+ for source in sources:
+ if "RUNNING" in source:
+ args += ["--audio", "--audio-device", source.split()[1]]
+ break
+ else:
+ raise ValueError("No audio source found")
+
+ proc = subprocess.Popen(
+ ["wl-screenrec", *args, "--codec", "hevc", "-f", recording_path],
+ stderr=subprocess.PIPE,
+ text=True,
+ start_new_session=True,
+ )
+
+ # Send notif if proc hasn't ended after a small delay
+ time.sleep(0.1)
+ if proc.poll() is None:
+ notif = subprocess.check_output(
+ ["notify-send", "-p", "-a", "caelestia-cli", "Recording started", "Recording..."], text=True
+ ).strip()
+ recording_notif_path.write_text(notif)
+ else:
+ subprocess.run(
+ [
+ "notify-send",
+ "-a",
+ "caelestia-cli",
+ "Recording failed",
+ f"Recording failed to start: {proc.communicate()[1]}",
+ ]
+ )
+
+ def stop(self) -> None:
+ subprocess.run(["pkill", "wl-screenrec"])
+
+ # Move to recordings folder
+ new_path = recordings_dir / f"recording_{datetime.now().strftime('%Y%m%d_%H-%M-%S')}.mp4"
+ recording_path.rename(new_path)
+
+ # Close start notification
+ try:
+ notif = recording_notif_path.read_text()
+ subprocess.run(
+ [
+ "gdbus",
+ "call",
+ "--session",
+ "--dest=org.freedesktop.Notifications",
+ "--object-path=/org/freedesktop/Notifications",
+ "--method=org.freedesktop.Notifications.CloseNotification",
+ notif,
+ ]
+ )
+ except IOError:
+ pass
+
+ action = subprocess.check_output(
+ [
+ "notify-send",
+ "-a",
+ "caelestia-cli",
+ "--action=watch=Watch",
+ "--action=open=Open",
+ "--action=delete=Delete",
+ "Recording stopped",
+ f"Recording saved in {new_path}",
+ ],
+ text=True,
+ ).strip()
+
+ if action == "watch":
+ subprocess.Popen(["app2unit", "-O", new_path], start_new_session=True)
+ elif action == "open":
+ p = subprocess.run(
+ [
+ "dbus-send",
+ "--session",
+ "--dest=org.freedesktop.FileManager1",
+ "--type=method_call",
+ "/org/freedesktop/FileManager1",
+ "org.freedesktop.FileManager1.ShowItems",
+ f"array:string:file://{new_path}",
+ "string:",
+ ]
+ )
+ if p.returncode != 0:
+ subprocess.Popen(["app2unit", "-O", new_path.parent], start_new_session=True)
+ elif action == "delete":
+ new_path.unlink()