diff options
author | dec05eba <dec05eba@protonmail.com> | 2022-10-18 09:02:24 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2022-12-20 15:41:24 +0100 |
commit | 9d0d02ff6f841a06d63e04fbf6c4ec95307d050b (patch) | |
tree | 27cbc992e6bc74ffd54c36a0b9ef2abc71059a8f /src | |
parent | 4e6fc174fe02d3ddb0d3dfe5894a31502df9b1ed (diff) |
Attempt to reduce stuttering of video
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index bde09b2..85dae18 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -808,6 +808,8 @@ int main(int argc, char **argv) { VideoCodec video_codec; const char *codec_to_use = args["-k"].value(); + fprintf(stderr, "Info: forcing codec to h264 to investigate stuttering with some configs\n"); + codec_to_use = "h264"; if(!codec_to_use) codec_to_use = "auto"; |