From 693187e9efd5fffafccdc945f81a99dc7659207d Mon Sep 17 00:00:00 2001 From: Dominic Reich Date: Sat, 4 May 2024 14:25:43 +0200 Subject: [PATCH] update archlinux notes page --- content/notes/archlinux/index.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/content/notes/archlinux/index.md b/content/notes/archlinux/index.md index 9852d6b..61ab4ec 100644 --- a/content/notes/archlinux/index.md +++ b/content/notes/archlinux/index.md @@ -1,7 +1,7 @@ --- title: Archlinux date: 2023-11-29T20:33:48+0100 -lastmod: 2024-04-28T09:30:28+0000 +lastmod: 2024-05-04T12:25:43+0000 tags: - archlinux @@ -199,3 +199,12 @@ More details can be found in {{< man loader.conf 5 >}}. | 6 | Section 6 of the manual describes the **games** and funny little programs available on the system. | | 7 | Section 7 of the manual provides **overviews on various topics**, and describes conventions and protocols, character set standards, the standard filesystem layout, and miscellaneous other things. | +## Encoding videos with ffmpeg + +This is not an Arch way of encoding videos, but since I do this on my... + +~~~console +$ ffmpeg -i -c:v libx264 -b:v 1M -maxrate 1M -bufsize 2M -pass 1 -f null /dev/null +$ ffmpeg -i -c:v libx264 -b:v 1M -maxrate 1M -bufsize 2M -pass 2 +~~~ +