summaryrefslogtreecommitdiffstats
path: root/TOOLS/umpv
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-04-29 02:09:59 +0200
committerwm4 <wm4@nowhere>2014-04-29 02:09:59 +0200
commitfa1b9517bc3d68460b721baadf4d38ce68d422df (patch)
tree83ec87a2de9f9f8a4ea3aaa2e3cd3794c38269de /TOOLS/umpv
parentf2f19b34046e135e41a1c1ffa50eaa7dab1bbf22 (diff)
downloadmpv-fa1b9517bc3d68460b721baadf4d38ce68d422df.tar.bz2
mpv-fa1b9517bc3d68460b721baadf4d38ce68d422df.tar.xz
TOOLS/umpv, mpv.desktop: use --no-terminal instead of --really-quiet
So this won't initialize terminal handling if stdout happens to be a terminal. It also suppresses all output to stdout/stderr.
Diffstat (limited to 'TOOLS/umpv')
-rwxr-xr-xTOOLS/umpv2
1 files changed, 1 insertions, 1 deletions
diff --git a/TOOLS/umpv b/TOOLS/umpv
index 162ce50449..39d69b5787 100755
--- a/TOOLS/umpv
+++ b/TOOLS/umpv
@@ -96,7 +96,7 @@ else:
raise e
os.mkfifo(FIFO, int("0600", 8))
- opts = ["mpv", "--really-quiet", "--force-window", "--input-file=" + FIFO]
+ opts = ["mpv", "--no-terminal", "--force-window", "--input-file=" + FIFO]
opts.extend(opts_env)
opts.append("--")
opts.extend(files)