move ffmpeg content from arch linux page to its own page
more content will be coming soon
This commit is contained in:
parent
b94d4fb97a
commit
109e492652
2 changed files with 26 additions and 10 deletions
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: Archlinux
|
title: Archlinux
|
||||||
date: 2023-11-29T20:33:48+0100
|
date: 2023-11-29T20:33:48+0100
|
||||||
lastmod: 2024-10-26T11:51:51+0000
|
lastmod: 2025-01-18T21:19:27+0000
|
||||||
tags:
|
tags:
|
||||||
- archlinux
|
- archlinux
|
||||||
- systemd
|
- 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. |
|
| 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. |
|
| 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. |
|
| 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>
|
|
||||||
```
|
|
||||||
|
|
25
content/notes/ffmpeg/index.md
Normal file
25
content/notes/ffmpeg/index.md
Normal file
|
@ -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>
|
||||||
|
```
|
Loading…
Reference in a new issue