How to play MP4 video using JMF?
I am creating Java application. I want to play MP4 file using JMF. I tried to play MP4 file but it throws exception
Could not create player for filename.mp4
Mpg format working fine for me. But I have only MP4 files.
Code:
Player mediaPlayer = Manager.createRealizedPlayer( mediaURL );
mediaPlayer.start();