update archlinux notes page

main
Dominic Reich 6 months ago
parent 15728ff2b3
commit 693187e9ef
Signed by: dominic
GPG Key ID: BC9D6AE1A3BE169A

@ -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 <input> -c:v libx264 -b:v 1M -maxrate 1M -bufsize 2M -pass 1 -f null /dev/null
$ ffmpeg -i <input> -c:v libx264 -b:v 1M -maxrate 1M -bufsize 2M -pass 2 <output>
~~~

Loading…
Cancel
Save