organisation

This commit is contained in:
2025-02-05 09:08:36 +01:00
parent fe701f6b9a
commit b06f99b9b9
2 changed files with 0 additions and 11 deletions

View File

@@ -0,0 +1,17 @@
# ffmpeg
## What is ffmpeg
ffmpeg is a tool to modify images with. It can do all sorts of stuff for example it can resize images or compress them.
## How do I use it?
### Playing videos and getting details
* To play a video using ffmpeg you can use `ffmpeg.ffplay <filename>`
* To see all details of a video you can use `ffmpeg.ffprobe <filename>`
### Compressing videos
Command to scale down a video
```bash
ffmpeg -i input_video.mp4 -s 800x800 -vcodec libx264 -b:v 1000k -an output_video.mp4
```