aboutsummaryrefslogtreecommitdiff
path: root/include/Config.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-10-27 01:52:22 +0200
committerdec05eba <dec05eba@protonmail.com>2024-10-27 01:54:37 +0200
commitcfcee1a5d8e5068cdc5171b01beb9f9e6251e51e (patch)
treed2237ae86f9c41bb74ae05be25f5209857e1a132 /include/Config.hpp
parent1d2fc77cfcd3d40c3a382d3f5f8e6c28e8b38da9 (diff)
Add option to change video resolution
Diffstat (limited to 'include/Config.hpp')
-rw-r--r--include/Config.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/Config.hpp b/include/Config.hpp
index 5766009..5839297 100644
--- a/include/Config.hpp
+++ b/include/Config.hpp
@@ -16,9 +16,12 @@ namespace gsr {
std::string record_area_option = "screen";
int32_t record_area_width = 0;
int32_t record_area_height = 0;
+ int32_t video_width = 0;
+ int32_t video_height = 0;
int32_t fps = 60;
int32_t video_bitrate = 5000;
bool merge_audio_tracks = true;
+ bool change_video_resolution = false;
std::vector<std::string> audio_tracks;
std::string color_range = "limited";
std::string video_quality = "very_high";