blob: 1c7c1f15a1a6b9fa810ce7ab693da8af4a8d44f5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#! /usr/bin/env nix-shell
#! nix-shell -i bash -p ffmpeg-full
#
# Window is positioned in the top-right corner, plus a small margin for systray
# This could be automatically calculated by parsing xrandr screen dimentions.
ffplay -f video4linux2 -i /dev/video0 \
-video_size 320x240 -noborder \
-left 1590 -top 30
-loglevel 0
|