Reputation: 5
Hi there I am working on a small java project that allows me to import, export , play and view. Images , videos and Mp3 files. I am just wondering is there any Java media player interfaces I can embed in my code. I could create my own but if there is one already out there I am sure it would be a lot more stable and save me a lot of time.
By the way I am using javafx with scene builder.
So any help would be great Thanks
Upvotes: 0
Views: 583
Reputation: 1787
To play videos, audio files you should to use MediaPlayer
To display Images use ImageView with some buttons to change images.
Sample implementation of MediaPlayer CLICK
Sample implementation for Album using ImageViews
PS. To using SceneBuilder is fine to work faster. But before using this tool, you should to understand how each node works. Try to develop your application without SceneBuilder, it will increase your programming skill. GL
Upvotes: 1