Merge branch 'master' of github.com:martinrotter/rssguard

This commit is contained in:
Martin Rotter 2024-04-19 13:11:18 +02:00
commit 73603c3d69
2 changed files with 170 additions and 165 deletions

File diff suppressed because it is too large Load Diff

View File

@ -54,6 +54,11 @@ LibMpvBackend::LibMpvBackend(Application* app, QWidget* parent)
mpv_set_option_string(m_mpvHandle, "config", "yes");
mpv_set_option_string(m_mpvHandle, "script-opts", "osc-idlescreen=no");
mpv_set_option_string(m_mpvHandle, "hwdec", "auto");
#if defined(MEDIAPLAYER_LIBMPV_OPENGL)
mpv_set_option_string(m_mpvHandle, "vo", "libmpv");
#endif
mpv_set_option_string(m_mpvHandle, "osd-playing-msg", "${media-title}");
mpv_set_option_string(m_mpvHandle, "osc", "yes");
mpv_set_option_string(m_mpvHandle, "input-cursor", "yes");