How to create and show an Alert box in JavaFX?

If you guys are working with JavaFX and creating a small application or creating an enterprise application then definitely you need to show an alert box on particular user action like a button click or doing some validation on form input, then there is a need to show alert popup in this case.I am going … Read more

How to use CSS in JavaFX project?

Hello friends! I hope you guys are familiar now with JavaFX development environment also you have done some hands-on with JavaFX Scene Builder. In this blog, I am going to explain the steps of using CSS in JavaFX project to create great GUI for our project. Please follow the steps given below.Step 1: First create … Read more

Computer and Information Technology

We are all living in the era of science and technology. The life of every man and woman amazingly depends on the inventions and new technology it has changed the lives of people more than imagination. Technology has made our life easy and fast. No wonder! Lots of latest gadgets have introduced, has solved approximately … 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

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