diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-02-14 00:09:19 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-02-14 00:09:19 +0100 |
commit | b385eb4687b51dcae140c29159c399db95b95718 (patch) | |
tree | 163b6d5afe151922bb458d6e27e666b83b0064c9 /src/main.cpp | |
parent | 9f8db9c84a69e8271085ea71382bbb7d1977aaf2 (diff) |
Improve troubleshooting for missing h264/hevc
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 144ba53..361722a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3133,7 +3133,7 @@ static void load_config(const gpu_info &gpu_inf) { "Switched video codec to AV1 since H264/HEVC video encoding is either missing or disabled on your system. If your know that your system supports H264/HEVC video encoding then " "try installing mesa-extra freedesktop runtime by running this command:\n" "flatpak install --system org.freedesktop.Platform.GL.default//23.08-extra\n" - "and then restarting GPU Screen Recorder. If that doesn't work then you may have to install another mesa package for your distro."); + "and then restart GPU Screen Recorder. If that doesn't work then you may have to install another mesa package for your distro."); gtk_dialog_run(GTK_DIALOG(dialog)); gtk_widget_destroy(dialog); config.main_config.codec = "av1"; @@ -3143,7 +3143,7 @@ static void load_config(const gpu_info &gpu_inf) { "H264/HEVC video encoding is either missing or disabled on your system. If your know that your system supports H264/HEVC video encoding then " "try installing mesa-extra freedesktop runtime by running this command:\n" "flatpak install --system org.freedesktop.Platform.GL.default//23.08-extra\n" - "and then restarting GPU Screen Recorder. If that doesn't work then you may have to install another mesa package for your distro."); + "and then restart GPU Screen Recorder. If that doesn't work then you may have to install another mesa package for your distro."); gtk_dialog_run(GTK_DIALOG(dialog)); gtk_widget_destroy(dialog); g_application_quit(G_APPLICATION(select_window_userdata.app)); |