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

Introduction of Gluon Scene Builder 2.0

Gluon Scene builder is same as Scene builder 2.0 (by Oracle). It is available free to download. Only difference is that it has some extra library support with extra built-in controls, so we can directly use it without any extra effort. These control as very user friendly and have great user experience and awesome look … Read more

Introduction of Scene Builder 2.0

Scene Builder is open source design tool launched by Oracle. It is free to download from Oracle website. We have to download and install this design tool before starting development in JavaFX. In any desktop application GUI is most important thing. All things move around GUI. If your application has a perfect GUI then it … 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

Interesting Facts About Computer

Ø  World’s First Electronic Digital Computer? ENIAC (Electronic Numerical Integrator and Computer) Local Name: Giant Brain ‘ENIAC’ was the father of the electronic digital programmable computer. It was 30 tons heavier and covers 1800 square feet (CA. 167 square meters) floor area. ENIAC consumed huge amount of electricity. It used large amounts of vacuum tubes, relay, … Read more

How to execute .jar file from Windows Scheduler?

Step 1: Open a notepad and write following command and save this file with .bat extension. java –jar BorderRadiusImageView.jar Step 2: Go to windows search and type “window scheduler” and click “Schedule Task”. And you will see ”Create Task” Scheduler window to create new Task. Now we have to give name of task and fill … Read more