From 109e49265246ea2caa8f64c50b15a356f24a9f07 Mon Sep 17 00:00:00 2001
From: Dominic Reich <dominic@noreply.oe7drt.com>
Date: Sat, 18 Jan 2025 22:19:27 +0100
Subject: [PATCH] move ffmpeg content from arch linux page to its own page

more content will be coming soon
---
 content/notes/archlinux/index.md | 11 +----------
 content/notes/ffmpeg/index.md    | 25 +++++++++++++++++++++++++
 2 files changed, 26 insertions(+), 10 deletions(-)
 create mode 100644 content/notes/ffmpeg/index.md

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 <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>
-```
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 <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>
+```