Retrieving metadata from media files in JavaFX
问题 I've a MediaPlayer which plays the music chosen by the user from the library. While creating the library, the songs are required to be listed by their title. I know I can acquire all metadatas using a Media object. But that is arising two problems. I) The whole process is very time and resource consuming for a large media collection II) Even if I do so using the following code for(String path : paths){ Media m = new Media(path); String title = (String)m.getMetadata().get("title"); String