diff --git a/gpu-screen-recorder-gtk/com.dec05eba.gpu_screen_recorder.appdata.xml b/gpu-screen-recorder-gtk/com.dec05eba.gpu_screen_recorder.appdata.xml index 4421aea..b8b34f6 100644 --- a/gpu-screen-recorder-gtk/com.dec05eba.gpu_screen_recorder.appdata.xml +++ b/gpu-screen-recorder-gtk/com.dec05eba.gpu_screen_recorder.appdata.xml @@ -18,15 +18,15 @@

- This is a screen recorder that has minimal impact on system performance by recording a window using the GPU only, similar to shadowplay on windows. This is the fastest screen recording tool for Linux. This screen recorder works with both X11 and Wayland. + This is a screen recorder that has minimal impact on system performance by recording a monitor using the GPU only, similar to shadowplay on windows. This is the fastest screen recording tool for Linux. This screen recorder works with both X11 and Wayland.

This screen recorder can be used for recording your desktop offline, for live streaming and for nvidia-like instant replay, where only the last few seconds are saved.

- There are some restrictions when recording on AMD/Intel. Videos created on AMD/Intel are in variable framerate format. Very out of date video players might have an issue playing such videos. I recommend using MPV or a browser to play such videos, otherwise you might experience stuttering in the video. + There are some restrictions when recording on AMD/Intel or Wayland. Videos created on AMD/Intel/Wayland are in variable framerate format. Very out of date video players might have an issue playing such videos. I recommend using MPV or a browser to play such videos, otherwise you might experience stuttering in the video. Recording a monitor requires (restricted) root access which means that you have to install GPU Screen Recorder system-wide: flatpak install flathub --system com.dec05eba.gpu_screen_recorder - and pkexec needs to be installed on the system. This is also the case when using wayland on Nvidia. + and pkexec needs to be installed on the system and a polkit agent needs to be running. Some distros such as manjaro disable hardware accelerated H264/HEVC which means GPU Screen Recorder wont work on AMD/Intel and you have to either switch to another distro or install mesa from source (or install mesa-git for example).

@@ -44,6 +44,41 @@ + + +

AMD/Intel: Fix too dark video in the flatpak version.

+
+
+ + +

AMD/Intel: Better color accuracy.

+
+
+ + +

Fix capture on wlroots based wayland compositors. Fix cursor offset in amd/intel capture.

+
+
+ + +

Support cursor capture on AMD/Intel on Wayland. Attempt to fix multi monitor offset capture in some cases.

+
+
+ + +

Support cursor capture on AMD/Intel on Wayland.

+
+
+ + +
    +
  • Support wlroots capture when possible (no kms root access required)
  • +
  • Make window capture a bit more robust
  • +
  • Fix possible lag on recording start on AMD/Intel
  • +
  • Make capture on AMD/Intel possible without Xwayland
  • +
+
+

Experimental wayland support on AMD/Intel/NVIDIA. Hotkeys not supported.

diff --git a/gpu-screen-recorder-gtk/gpu-screen-recorder-gtk b/gpu-screen-recorder-gtk/gpu-screen-recorder-gtk index b50fb40..fb4738a 100755 Binary files a/gpu-screen-recorder-gtk/gpu-screen-recorder-gtk and b/gpu-screen-recorder-gtk/gpu-screen-recorder-gtk differ diff --git a/gpu-screen-recorder-gtk/install.sh b/gpu-screen-recorder-gtk/install.sh index af56bbf..a866928 100755 --- a/gpu-screen-recorder-gtk/install.sh +++ b/gpu-screen-recorder-gtk/install.sh @@ -12,3 +12,5 @@ install -Dm644 "gpu-screen-recorder-gtk.desktop" "/usr/share/applications/com.de install -Dm644 com.dec05eba.gpu_screen_recorder.appdata.xml "/usr/share/metainfo/com.dec05eba.gpu_screen_recorder.appdata.xml" install -Dm644 icons/hicolor/64x64/apps/com.dec05eba.gpu_screen_recorder.png "/usr/share/icons/hicolor/64x64/apps/com.dec05eba.gpu_screen_recorder.png" install -Dm644 icons/hicolor/128x128/apps/com.dec05eba.gpu_screen_recorder.png "/usr/share/icons/hicolor/128x128/apps/com.dec05eba.gpu_screen_recorder.png" + +echo "Successfully installed gpu-screen-recorder-gtk" diff --git a/gpu-screen-recorder/gpu-screen-recorder b/gpu-screen-recorder/gpu-screen-recorder index cf39057..3c67735 100755 Binary files a/gpu-screen-recorder/gpu-screen-recorder and b/gpu-screen-recorder/gpu-screen-recorder differ diff --git a/gpu-screen-recorder/gsr-kms-server b/gpu-screen-recorder/gsr-kms-server index 80a5b08..5fc9f07 100755 Binary files a/gpu-screen-recorder/gsr-kms-server and b/gpu-screen-recorder/gsr-kms-server differ diff --git a/gpu-screen-recorder/install.sh b/gpu-screen-recorder/install.sh index ecdb99f..42cc5d0 100755 --- a/gpu-screen-recorder/install.sh +++ b/gpu-screen-recorder/install.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/sh -e script_dir=$(dirname "$0") cd "$script_dir" @@ -9,6 +9,8 @@ cd "$script_dir" strip gsr-kms-server strip gpu-screen-recorder rm -f "/usr/local/bin/gpu-screen-recorder" +setcap cap_sys_admin+ep gsr-kms-server +setcap cap_sys_nice+ep gpu-screen-recorder install -Dm755 "gsr-kms-server" "/usr/bin/gsr-kms-server" install -Dm755 "gpu-screen-recorder" "/usr/bin/gpu-screen-recorder"