6 lines
93 B
Bash
6 lines
93 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
FILE=${1:-screen.webm}
|
||
|
|
||
|
ffmpeg -f x11grab -s wxga -r 25 -i :0.0 -qscale 0 $FILE
|