Options

mplayer -msglevel all=-1 不會讓它完全安靜!

  • July 25, 2021

我正在嘗試使用以下方法打開mplayer以播放沒有任何終端輸出的影片:

mplayer -msglevel all=-1 /path/to/video

還:

mplayer -really-quiet /path/to/video

但它並沒有讓它完全沉默!這些被列印到輸出:

[flv @ 0x9a5d100]Estimating duration from bitrate, this may be inaccurate
[ass] Init
[ass] Updating font cache

我怎樣才能mplayer完全保持沉默?

謝謝

試試這個:mplayer file > /dev/null 2>&1

重擊 4:mplayer file &> /dev/null

引用自:https://unix.stackexchange.com/questions/66438