You've already forked it9910hd_fusefs
mirror of
https://github.com/marek-g/it9910hd_fusefs.git
synced 2026-05-06 02:11:10 +09:00
12 lines
287 B
Bash
12 lines
287 B
Bash
#!/bin/bash
|
|
|
|
mkdir ./video
|
|
|
|
./it9910hd_fusefs ./video --width 1920 --height 1080 --fps 25 --bitrate 20000 --audio_src 2 --video_src 4 --brightness=0 --contrast=100 --saturation=100 --hue=0 &
|
|
|
|
mpv -hwdec=auto --record-file=./video.ts ./video/hdmi_stream.ts
|
|
|
|
umount ./video
|
|
|
|
rmdir ./video
|