oe7drt-website/content/notes/ffmpeg/index.md

26 lines
473 B
Markdown
Raw Normal View History

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