Make the Mod+F11 camera window less laggy
There used to be a 1s delay on my webcam feed. After a bit of googling and stumbling upon this article https://wiki.archlinux.org/index.php/Webcam_setup I found out that mpv has a low latency profile that proved to be useful on my setup
This commit is contained in:
parent
67eabfe475
commit
306578196b
1 changed files with 1 additions and 1 deletions
2
config.h
2
config.h
|
@ -243,7 +243,7 @@ static Key keys[] = {
|
|||
{ MODKEY, XK_F8, spawn, SHCMD("mw -Y") },
|
||||
{ MODKEY, XK_F9, spawn, SHCMD("dmenumount") },
|
||||
{ MODKEY, XK_F10, spawn, SHCMD("dmenuumount") },
|
||||
{ MODKEY, XK_F11, spawn, SHCMD("mpv --no-cache --no-osc --no-input-default-bindings --input-conf=/dev/null --title=webcam $(ls /dev/video[0,2,4,6,8] | tail -n 1)") },
|
||||
{ MODKEY, XK_F11, spawn, SHCMD("mpv --no-cache --no-osc --no-input-default-bindings --profile=low-latency --input-conf=/dev/null --title=webcam $(ls /dev/video[0,2,4,6,8] | tail -n 1)") },
|
||||
/* { MODKEY, XK_F12, xrdb, {.v = NULL } }, */
|
||||
{ MODKEY, XK_space, zoom, {0} },
|
||||
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
|
||||
|
|
Loading…
Reference in a new issue