mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-12 01:00:29 +08:00
10 lines
285 B
Bash
10 lines
285 B
Bash
#!/bin/bash
|
|
|
|
#tty清屏
|
|
echo -e "\033c" > /dev/tty1
|
|
|
|
#隐藏光标
|
|
echo -e "\033[?25l" > /dev/tty1
|
|
|
|
#在HDMI显示器输出采集卡画面
|
|
ustreamer-dump --sink=kvmd::ustreamer::jpeg --output - | ffmpeg -use_wallclock_as_timestamps 1 -i pipe:c:v -an -pix_fmt bgr24 -f fbdev /dev/fb0 |