diff --git a/content/notes/archlinux/index.md b/content/notes/archlinux/index.md index 565403f..2d03fbf 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-10-26T11:51:51+0000 +lastmod: 2025-01-18T21:19:27+0000 tags: - archlinux - systemd @@ -502,12 +502,3 @@ More details can be found in {{< man loader.conf 5 >}}. | 5 | Section 5 of the manual describes various **file formats**, as well as the **corresponding C structures**, if any. | | 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 -``` diff --git a/content/notes/ffmpeg/index.md b/content/notes/ffmpeg/index.md new file mode 100644 index 0000000..1b3ba81 --- /dev/null +++ b/content/notes/ffmpeg/index.md @@ -0,0 +1,25 @@ +--- +title: FFmpeg +date: 2025-01-18T10:12:56+0100 +# lastmod: +tags: + - ffmpeg + - linux + +#showDate: false +showReadingTime: false +showWordCount: false +showPagination: false +#showAuthor: false +showBreadcrumbs: true + +feed_exclude: true +# site_exclude: true +--- + +## libx264 1Mbps standard + +```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 +```