ffmpeg

Original🇺🇸 English
Translated

Media processing (10 man pages).

3installs
Added on

NPX Install

npx skill4agent add plurigrid/asi ffmpeg

Tags

Translated version includes tags in frontmatter

ffmpeg

Media processing (10 man pages).

Convert

bash
ffmpeg -i input.mov -c:v libx264 output.mp4
ffmpeg -i input.mp4 -c:v libvpx-vp9 output.webm

Audio

bash
ffmpeg -i video.mp4 -vn -c:a aac audio.m4a
ffmpeg -i input.mp3 -ar 44100 output.wav

Resize

bash
ffmpeg -i input.mp4 -vf scale=1280:720 output.mp4
ffmpeg -i input.mp4 -vf scale=-1:480 output.mp4

GIF

bash
ffmpeg -i input.mp4 -vf "fps=10,scale=320:-1" output.gif

Concat

bash
ffmpeg -f concat -i list.txt -c copy output.mp4

Capture

bash
ffmpeg -f avfoundation -i "1" -t 10 capture.mp4

Stream

bash
ffmpeg -i input.mp4 -f mpegts - | mpv -