2023-05-09 11:17:08 +00:00
|
|
|
---
|
|
|
|
tags: terminal multimedia
|
|
|
|
---
|
2022-05-22 07:51:26 +00:00
|
|
|
# ffmpeg
|
|
|
|
## Linux Commandline tool for Video Editing
|
|
|
|
Basic commandline: `ffmpeg -i input.mp4 output.mp4`
|
|
|
|
- Remove Audio: `-an`
|
|
|
|
- Video Bitrate: `-b:v 32M`
|
|
|
|
- Start time: `-ss 3:00`
|
|
|
|
- Duration: `-t 1:00`
|
2022-05-30 13:32:39 +00:00
|
|
|
- Duration (absolute): `-to 4:00`
|
2022-12-15 10:21:11 +00:00
|
|
|
- Framerate: `-r 60`
|
2022-05-30 13:32:39 +00:00
|
|
|
|
|
|
|
## ffmpeg buddy
|
|
|
|
An [online tool](https://evanhahn.github.io/ffmpeg-buddy/) to interactively set up `ffmpeg` commands.
|