aboutsummaryrefslogtreecommitdiff
path: root/content/blog/commands/capture-desktop-video.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/blog/commands/capture-desktop-video.md')
-rw-r--r--content/blog/commands/capture-desktop-video.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/content/blog/commands/capture-desktop-video.md b/content/blog/commands/capture-desktop-video.md
new file mode 100644
index 0000000..f56572a
--- /dev/null
+++ b/content/blog/commands/capture-desktop-video.md
@@ -0,0 +1,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 >}}