// System.out.println("Album: "+album);
// System.out.println("Title: "+title);
// System.out.println("Genre: "+genre);
// System.out.println("Length: "+af.getAudioHeader().getTrackLength());
try {
queue.put(new TrackDto(track, artist, album, title, genre, af.getAudioHeader().getTrackLength(), path));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}