Examples of ArtistCredit


Examples of net.sf.jmp3renamer.plugins.MusicBrainz.ws2.ArtistCredit

                // set the title
                ds.setTitle(track.getRecording().getTitle());

                // set the artist name
                if (track.getRecording() != null && track.getRecording().getArtistCredit() != null) {
                    ArtistCredit ac = track.getRecording().getArtistCredit();
                    ds.setArtist(ac.getNameCredit().get(0).getArtist().getName());
                } else {
                    ds.setArtist(mbAlbum.getArtist());
                }

                // set the track number
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.