diff options
author | dec05eba <dec05eba@protonmail.com> | 2020-07-17 06:42:50 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-17 06:42:50 +0200 |
commit | 030172abf944101abb6a48fbcad5cd50a3ce6dc6 (patch) | |
tree | 08da89b50a4d4db9d045e5adecf7454969e4f56b /src | |
parent | cfc9e41222111ba0d87f0777b10091befda3e84a (diff) |
Use better mpv options
Diffstat (limited to 'src')
-rw-r--r-- | src/VideoPlayer.cpp | 4 |
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" |