mirror of https://github.com/mpv-player/mpv
mpv_identify: add --quiet to mpv command line
Prevents the status line from being printed. Otherwise, the status line is always printed due to --frames=1, and it's visible on the terminal because it's printed to stderr.
This commit is contained in:
parent
90118a3810
commit
d48c855669
|
@ -104,7 +104,7 @@ for __midentify__key in $__midentify__allprops; do
|
||||||
eval unset $__midentify__nextprefix$__midentify__key
|
eval unset $__midentify__nextprefix$__midentify__key
|
||||||
done
|
done
|
||||||
|
|
||||||
__midentify__output=`$MPV --playing-msg="$__midentify__propstr" --vo=null --ao=null --frames=1 "$@"`
|
__midentify__output=`$MPV --playing-msg="$__midentify__propstr" --vo=null --ao=null --frames=1 --quiet "$@"`
|
||||||
__midentify__fileindex=0
|
__midentify__fileindex=0
|
||||||
__midentify__prefix=
|
__midentify__prefix=
|
||||||
while :; do
|
while :; do
|
||||||
|
|
Loading…
Reference in New Issue