I am doing game development using JMonkeyEngine and I have created an introduction video (.mp4). I want to play it at the start before the game starts but I am unable to play the video and can only listen the audio for a few seconds. Below is the code I am using to play the music.
Media media = new Media("file:/Users/t/Desktop/Presentation1_1.mp4");
MediaPlayer mp;
mp= new MediaPlayer(media);
mp.volumeProperty();
mp.play()