FFmpeg is an extremely powerful and versatile command line tool for converting any multimedia files. It is free and available for Windows, Mac and Linux machines. Whether you want to join two video files, extract the audio component from a video file, convert your video into an animated GIF, FFmpeg can do it all and even more. FFmpeg commad synopsis ffmpeg [global_options] {[input_file_options] -i input_url} ... {[output_file_options] output_url} ... Some Basic and Useful Commands Cut video file into a smaller clip ffmpeg -i videoplayback.mp4 -ss 00:00:50 -codec copy -t 20 output.mp4 Convert video from one format to another ffmpeg -i videoplayback.mp4 -c:v libx264 filename.wav Mute a video (Remove the audio component) ffmpeg -i videoplayback.mp4 -an mute-video.mp4 Convert Video into Images ffmpeg -i videoplayback.mp4 -r 0.25 frames_%1d.png Convert a video into animated GIF ffmpeg -i videoplayback.mp4 -vf scale=500:400 -r 5 -t 00:00:30 image.gif ...