blob: f56572a6d26692208ce5c05273f2f6394e47a81c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
title: "Capture a video of your desktop"
linkTitle: "Capture a video of your desktop"
date: 2011-11-20
description: >
Capture a video of your desktop
---
You can capture a video of your linux desktop with ffmpeg :
{{< highlight sh >}}
ffmpeg -f x11grab -s xga -r 25 -i :0.0 -sameq /tmp/out.mpg
{{< /highlight >}}
|