mpconsole

来自「君正早期ucos系统(只有早期的才不没有打包成库),MPLAYER,文件系统,图」· 代码 · 共 13 行

TXT
13
字号
#!/bin/sh# Script to run mplayer on the console (fbdev/mga_vid/etc) without# the console text and/or flashing cursor getting in the way.# Written by Rich Felker.trap "tput cnorm ; exit 1" SIGQUIT SIGINT EXITres=`PATH="$PATH:/usr/sbin" fbset | grep geometry | sed 's/^ *//'`width=`echo "$res" | cut -d' ' -f2`height=`echo "$res" | cut -d' ' -f3`tput civisclearmplayer -vo mga -screenw "$width" -screenh "$height" "$@" >/dev/null 2>&1

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?