How to install FFmpeg in MacOS Ventura in 2024?

In this tutorial you will learn to install FFmpeg in MacOS Ventura. This process will also work for later OS version as well. Let’s Begin. (Please make sure your Mac is connected with internet). Step 1: First check home-brew is installed on our Mac or not.Open terminal and type: brew -v (if not found then … Read more

FFmpeg: How to add a color border to a video?

In this tutorial, I will show you how to add a color border to a video using the FFmpeg command. ffmpeg -i myinput.mp4 -filter_complex “[0]pad = w=40+iw : h=40+ih: x=20 : y=20 : color=#FF0000” -movflags +faststart output.mp4 w=40+iw h=40+ih x=20:y=20 is used for if x=0,y=0 so the border is not shown on the left and … Read more

FFmpeg | Concatenate multiple videos with different transitions | Video Transition Effects Part #2

In this tutorial, we will learn to concatenate multiple videos with different types of GL transitions. Prerequisites: 1) node js 2) ffmpeg-concat module FFmpeg: Video Transitions Effects – Part #1 Step 1: In this step, we will write a script to concatenate multiple videos with different kinds of transitions. Create a file with .js extension … Read more

FFmpeg : Video Transition Effects – Part #1

In this tutorial, we will learn to use video transitions to concat two videos with the FFmpeg command. **Prerequisite to use GL transitions: 1) ffmpeg to be installed. 2) Node js must be installed. 3) ffmpeg-concat module required Let’s get started: Step 1: Node.js Installation tutorial: link: https://youtu.be/fk8gVu8PJXM Step 2: Now we will install ffmpeg-concat … Read more

Fmpeg | Horizontal text scrolling with looping

Here I am sharing very useful command for horizontal text scrolling on video. We can easily do it in a single command. This is a really a very nice command to do looping of scrolling text. Scrolling from left to right: (at Bottom) ffmpeg -i input.mp4 -vf drawtext=”fontfile=C\:/Windows/Fonts/arial.ttf:text=’This is Cool IT Help’ : y=h-line_h-10:x=(mod(5*n,w+tw)-tw):fontcolor=white:fontsize=30″ output1.mp4 … Read more

FFmpeg | Vertical Text Scrolling with loop

Here i am sharing very useful command for vertical text scrolling on video. We can do it in a single command. This is really very nice command to do looping of scrolling text. Scrolling from bottom to top: ffmpeg -i input.mp4 -vf drawtext=”fontfile=C\:/Windows/Fonts/arial.ttf:textfile=info.txt : x=(w-tw)/2 : y=((h+th)- mod(4*n,h+th+100)):fontcolor=white:fontsize=30″ output8.mp4 Offset calculation: y = ((h+th) – … Read more

Useful FFmpeg Commands

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 … Read more

How to create video by using FFmpeg with solid background color with desired length?

Here i have used the following FFmpeg command to create video with solid background color and desired length video. Here i have given the set of useful command to achieve same ouput.  1) Create video frame with colored background   ffmpeg -f lavfi -i color=c=green:s=600×400:d=3.20 outputl.mp4   ffmpeg -f lavfi color=c=#ADFF2F:s=600×400:d=3.20 output3.mp4  2) write text on video frame … Read more

How to download & Install FFmpeg on Windows 10?

Step 1: Please click on https://www.ffmpeg.org/download.html . And you will see following page shown in below image: Step 2: Now click on windows icon and then click the Builds link as shown in below image. Step 3: Once you click on “Builds” link you will be redirected to new page. Please see the below image. … Read more