Easy to follow steps on how to develop movie player using Java / JavaFX
(Demo using IntelliJ IDEA, can be easily followed using other IDEs)
How to:
create empty stage with black background
add Media, MediaPlayer, MediaView to the stage
add Slider as the movie controller
bind MediaPlayer to the Slider
add AudioSpectrumListener to tap the audio spectrum in MediaPlayer
add slide-in slide-out animation for the controller
Souce Code:
http://code.google.com/p/paul-grammin...
Note: using Sintel movie trailer from • Sintel | first official trailer US (2...
JavaFX 2.0 API for Media:
http://docs.oracle.com/javafx/2/api/j...
-- Read Movie from http --
final Media media = new Media("http://ftp.nluug.nl/ftp/graphics/blen...");