Answer the question
In order to leave comments, you need to log in
How to play an excerpt of a song with the java jlayer player library?
It is necessary to play the song not from the very beginning, but from the Nth second. How can this be implemented?
Answer the question
In order to leave comments, you need to log in
Import libraries:
import java.io.FileInputStream;
import javazoom.jl.player.advanced.*;
import javazoom.jl.player.*;
AdvancedPlayer ap;
InputStream is=new FileInputStream(song);
AudioDevice device=new JavaSoundAudioDevice();
ap=new AdvancedPlayer(is,device);
ap.play(int start, int end);
ap.stop();
ap.close();
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question