From 4f267e6f29c98259fea3a572778475f3bda9374e Mon Sep 17 00:00:00 2001 From: dec05eba Date: Mon, 2 Sep 2024 22:05:09 +0200 Subject: Text --- README.md | 2 +- src/main.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 94c927e..ad83c73 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Run `sudo ./install.sh` or if you are running Arch Linux, then you can find gpu You can also install gpu screen recorder (the gtk gui version) from [flathub](https://flathub.org/apps/details/com.dec05eba.gpu_screen_recorder). This flatpak includes gpu-screen-recorder so no need to install that first. # Dependencies -GPU Screen Recorder GTK uses meson build system so you need to install `meson` to build GPU Screen Recorder GTK: +GPU Screen Recorder GTK uses meson build system so you need to install `meson` to build GPU Screen Recorder GTK. ## Build dependencies These are the dependencies needed to build GPU Screen Recorder GTK: diff --git a/src/main.cpp b/src/main.cpp index b7d78ad..2b6cac9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2758,7 +2758,7 @@ static GtkWidget* create_common_settings_page(GtkStack *stack, GtkApplication *a gtk_list_store_set(store, &iter, 1, "auto", -1); gtk_list_store_append(store, &iter); - gtk_list_store_set(store, &iter, 0, gsr_info.supported_video_codecs.h264 ? "H264 (Worst compression, best software compatibility)" : "H264 (Not available on your system)", -1); + gtk_list_store_set(store, &iter, 0, gsr_info.supported_video_codecs.h264 ? "H264 (Largest file size, best software compatibility)" : "H264 (Not available on your system)", -1); gtk_list_store_set(store, &iter, 1, "h264", -1); gtk_list_store_append(store, &iter); @@ -2766,7 +2766,7 @@ static GtkWidget* create_common_settings_page(GtkStack *stack, GtkApplication *a gtk_list_store_set(store, &iter, 1, "hevc", -1); gtk_list_store_append(store, &iter); - gtk_list_store_set(store, &iter, 0, gsr_info.supported_video_codecs.av1 ? "AV1 (Best compression, worst software compatibility)" : "AV1 (Not available on your system)", -1); + gtk_list_store_set(store, &iter, 0, gsr_info.supported_video_codecs.av1 ? "AV1 (Smallest file size, worst software compatibility)" : "AV1 (Not available on your system)", -1); gtk_list_store_set(store, &iter, 1, "av1", -1); gtk_list_store_append(store, &iter); -- cgit v1.2.3