ffmpeg record

This commit is contained in:
Alexander Popov 2023-03-18 15:38:23 +03:00
parent 94012d6242
commit e740724561
Signed by: iiiypuk
GPG Key ID: D8C9B59A9F04A70C
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
---
title: "🎞️ Запись экрана с помощью ffmpeg"
date: 2023-03-18T15:38:00+03:00
draft: false
tags: [tips, linux, ffmpeg, ]
---
Запись видео с экрана через **ffmpeg**.
```sh
ffmpeg -f x11grab -framerate 25 -i :0 video.mp4
```