Skip to content

Instantly share code, notes, and snippets.

View mayazdi's full-sized avatar
🎯
Focusing

Amin mayazdi

🎯
Focusing
View GitHub Profile
@mayazdi
mayazdi / ffmpeg-commands.md
Last active August 13, 2024 06:32
ffmpeg useful commands

ffmpeg commands

reduce video size

ffmpeg -i input.mp4 -b 40k output.mp4

merge video and audio into one file

ffmpeg -i video.mp4 -i audio.m4a -c copy -map 0:v -map 1:a output.mp4