JavaFx Modal progress bar with console window

This video of sample project in which i have use modal progress bar, tabview with console window. I have used textarea to print console output. Here is best example in Javafx with progress bar as modal window.

JavaFX - Change Java Icon to any Image Icon

In this video tutorial i have described , how to change JavaFX application task bar icon. You can set app icon of your choice in place of traditional java Icon.

JavaFX Alert box | How to change stage icon of alert box | Dialog Box/Alert box

In this video tutorial, i have explained about JavaFX based alert box. This alert box can be easily used to show alert message box in your application. Also i have described how to change alert box's stage icon and show any image as icon of our choice.

JavaFX First Project in Netbeans 8.0 | JavaFX Netbeans Tutorial

This video tutorial showing you that how to make first JavaFX project using Netbeans 8.0 ? This tutorial make easy to learn javafx Netbeans 8. I have described from the very first step. I tried to make it more simple for easy understanding for beginners in javafx. They can easily understand the javafx GUI development and and write very first program with help of Netbeans and can run easily.

Take Snapshot in JavaFX via code | JavaFX Screenshot using code

In this video tutorial, i have given example to take snapshot in Javafx of node via simple code. Please go through the complete video for better clarification.

How to use TreeView in JavaFX ? | JavaFX TreeView Explained

In this video tutorial, i have explained the use of TreeView in JavaFX application. I have described step by step implementation of treeview in Javafx. For better understanding please watch complete video.

JavaFX CheckBox TreeView | How to create checkbox treeview ?

In this video tutorial, i have explained about the checkbox treeview. To implement checkbox treeview in javafx application we need to add controlsfx jar in class path. Follow this link to download controlsfx-8.40.13.jar and add this to project class path to implement checkbox treeview :
URL : http://fxexperience.com/downloads/controlsfx-8-40-13/

How to use JavaFX Notification box ?

In this video tutorial, i have explained about the notification box/alert box. To implement notification box in javafx application we need to add controlsfx jar in classpath. Follow this link to download controlsfx-8.40.13.jar and add this to project class path to implement Notification box as alert box :
URL : http://fxexperience.com/downloads/controlsfx-8-40-13/

FFmpeg Video Editing Commands - Part 1, Set color in Background

In this tutorial i have given description and demo of video editing commands. part 1 is about creating video with solid background color with desired length video.

Used command in this Tutorial
[write text of video frame in single command from text file and using font type] 

ffmpeg -f lavfi -i color=c=green:s=600x400:d=3.20 -vf drawtext="fontfile=C\\:/Windows/Fonts/arial.ttf:fontsize=30: fontcolor=white:x=(w-text_w)/2:y=(h-text_h)/2:textfile='hello.txt'" output1.mpg

FFmpeg Video Editing Commands - Part 2, Write text on video

In this tutorial i have given description  and demo of video editing commands part 2 is about creating video with solid background color with desired length video.

Used command in this Tutorial [write text of video frame in single command from text file and using font type and font color]

ffmpeg -f lavfi -i color=c=#006400:s=600x400:d=5.20 -vf drawtext="fontfile=C\\:/Windows/Fonts/arial.ttf:fontsize=30: fontcolor=white:x=(w-text_w)/2:y=(h-text_h)/2:textfile='hello.txt'" output4.mp4

FFmpeg Video Editing Commands Part - 3, Insert image in background

In this tutorial i have given description and demo of video editing commands part 3 is about creating video with image in background with desired length video.

Used command in this Tutorial [setting image in background of video frame]

ffmpeg -loop 1 -i Lighthouse.jpg -vframes 100 -vf scale=720:-1 -acodec copy -threads 12 imgoutput.mp4
ffmpeg -i imgoutput.mp4 imgoutputReady.mpg


FFmpeg Video Editing Command to Merge audio and video

In this tutorial i have given description and demo of video editing commands is about creating video with solid background color with desired length 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

How to Install FFmpeg: https://youtu.be/xkb5REYV5xc

FFmpeg Convert Video from One Format to Another Format

This video tutorial explained that how to convert video format to another with the help of FFmpeg tool. With the help of FFmpeg we can convert wmv to mp4, mp4 to wmv, mvi to mp4, mpg to mp4, mp4 to mpg, etc.

Conversion of Video from one format to another format-

ffmpeg -i wildlife.wmv -c:v libx264 wildlife.mp4

How to Install FFMPEG : https://youtu.be/xkb5REYV5xc


FFmpeg Cut video file into smaller clips


This FFmpeg tutorial explain you, how to cut a smaller clip from a source video file using FFmpeg. 

Cut video file into smaller clips -

ffmpeg -i wildlife.wmv -ss 00:00:10.0 -codec copy -t 30 output1.mp4

How to Install FFmpeg : https://youtu.be/xkb5REYV5xc


Extract Image Frames From Video FFmpeg | Take snapshot in FFmpeg

In this video tutorial i have explained about to capture screenshot using FFmpeg command. Its simple and easy. 

Extract image frames from a video file

ffmpeg -ss 00:00:15 -i wildlife.wmv -vf scale=800:-1 -vframes 1 image.jpg

How to Install FFmpeg: https://youtu.be/xkb5REYV5xc

FFmpeg Splitting a Video Into Multiple Parts

In this video tutorial i have described about the FFmpeg command to split a video into multiple parts using single FFmpeg command.

Command to split video into multiple parts -

ffmpeg -i wildlife.wmv -t 00:00:50 -c copy outputVideo1.wmv -ss 00:00:50 -codec copy outputVideo2.wmv



How to Install FFmpeg: https://youtu.be/xkb5REYV5xc

FFmpeg Adding Subtitle to a Movie

In this video tutorial i have described about the process to add a subtitle in a movie with help of FFmpeg command. Also i have described the steps to create a subtitle file. Its easy and simple. Enjoy!

FFmpeg Multiline Scrolling text from .txt file on video


In this video tutorial i have explained about the FFmpeg command that can write multi line scrolling text on video by using a .txt input file for scrolling text.

FFmpeg Scrolling text on video from bottom to top

In this video tutorial, i have shown the process to create scrolling text on video with help of FFmpeg command. Also i have given example to change the position of scrolling text and change the speed to scrolling.

How to Install FFmpeg on Windows 7

This video tutorial will explain the installation steps of FFmpeg on windows machine. This video tutorial will help you to understand the FFmpeg installation process in easy way.