From 968e77218a926b2da44130fe1ace96eb56534b82 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Tue, 30 Aug 2022 05:41:36 -0500 Subject: [PATCH] make mpv log less while debugging other things --- src/mpv/mpvobject.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mpv/mpvobject.cpp b/src/mpv/mpvobject.cpp index 39fc683..e441333 100644 --- a/src/mpv/mpvobject.cpp +++ b/src/mpv/mpvobject.cpp @@ -133,7 +133,8 @@ MpvObject::MpvObject(QQuickItem *parent) if (!mpv) throw std::runtime_error("could not create mpv context"); - mpv_set_option_string(mpv, "terminal", "yes"); + // these are the terminal messages + // mpv_set_option_string(mpv, "terminal", "yes"); // mpv_set_option_string(mpv, "msg-level", "all=warn,ao/alsa=error"); // mpv_set_option_string(mpv, "msg-level", "all=debug");