Add new data

This commit is contained in:
root
2024-03-02 02:54:33 +03:00
parent ed098b2e6c
commit 8c8a39aef2
17 changed files with 112 additions and 18 deletions

12
docs/progs/ffmpeg.md Normal file
View File

@@ -0,0 +1,12 @@
# FFmpeg
## Crop video to 720x520 begin from 0:280
```bash
ffi in.mov -vf "crop=720:520:0:280" -c:v libx264 -c:a copy -b:v 1200k out.mp4
```
## Grab video from screen
```bash
ffmpeg -s 1920x1080 -framerate 10 -f x11grab -i :0 -qscale 6 out.mkv
```