FFmpeg Video Editing Command to Merge audio and video
Used command in this Tutorial [join multiple mp4 video files into one video]
ffmpeg -f concat -i join.txt -c copy joined.mp4
[adding audio file with mp4]
ffmpeg -i joined.mp4 -i xyz.mp3 -shortest output.mp4
FFmpeg Convert video to Animated GIF
In this video tutorial, I have described the process to convert a video to a Animated GIF with the help of FFmpeg command. It’s easy to use.
Command used to convert video to Gif-
ffmpeg -i Wildlife.wmv -vf scale=500:-1 -t 10 -r 10 imageOutput.gif
<<Previous