4373ab08457e1a90c060657f1f44181286d6ecd7
[webi-installers/.git] / ffmpeg / README.md
1 ---
2 title: ffmpeg
3 homepage: https://ffmpeg.org/
4 tagline: |
5   FFmpeg: A complete, cross-platform solution to record, convert and stream audio and video.
6 ---
7
8 ## Updating `ffmpeg`
9
10 ```bash
11 webi ffmpeg@stable
12 ```
13
14 Disclaimer: ffmpeg does not provide official binaries, so
15 <https://github.com/eugeneware/ffmpeg-static> is used.
16
17 ## Cheat Sheet
18
19 > FFmpeg is useful for converting between various audio, video, and image
20 > formats.
21
22 Many simple conversions can be auto-detected by file extension and the options
23 that produce the most similar quality by default.
24
25 ```bash
26 ffmpeg -i input.m4a output.mp3
27 ```