aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-07-17 06:42:50 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-17 06:42:50 +0200
commit030172abf944101abb6a48fbcad5cd50a3ce6dc6 (patch)
tree08da89b50a4d4db9d045e5adecf7454969e4f56b
parentcfc9e41222111ba0d87f0777b10091befda3e84a (diff)
Use better mpv options
-rw-r--r--src/VideoPlayer.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/VideoPlayer.cpp b/src/VideoPlayer.cpp
index 48b7f52..b9b3440 100644
--- a/src/VideoPlayer.cpp
+++ b/src/VideoPlayer.cpp
@@ -79,12 +79,14 @@ namespace QuickMedia {
args.insert(args.end(), {
"mpv", "--keep-open=yes", input_ipc_server_arg.c_str(),
"--no-resume-playback",
+ "--cursor-autohide=no", /* "--no-input-default-bindings", "--input-vo-keyboard=no", "--no-input-cursor", */
+ "--no-terminal",
wid_arg.c_str()
});
if(!use_system_mpv_config) {
args.insert(args.end(), {
- "--no-config", "--demuxer-max-bytes=40M", "--demuxer-max-back-bytes=20M",
+ "--no-config", /*"--demuxer-max-bytes=40M", "--demuxer-max-back-bytes=20M",*/
"--profile=gpu-hq",
"--vo=gpu",
"--hwdec=auto"