I want to play video file in JAVA(java swing).
I have used JMF(java media framework). But it support .mpg format only.
I want to play .mp4 format video file.
How to do this?
I could play mpg video using this code
mediaPlayer1.setMediaLocation("file:///C:/mpgvdo/Best_Song2.mpg");
mediaPlayer1.start();
I want to know how i could use vlcj to play mp4 files.I need complete steps.starting from vlcj installation.
I have included vlcj jar file in netbeans library also added to palette but I did not find vlc player.
Please help me.