Package org.jaudiotagger.tag.lyrics3

Examples of org.jaudiotagger.tag.lyrics3.FieldFrameBodyLYR


                }
            }
            //Lyrics 3
            else if (mp3tag instanceof AbstractLyrics3) {
                //Put the conversion stuff in the individual frame code.
                Lyrics3v2 lyric;
                if (mp3tag instanceof Lyrics3v2) {
                    lyric = new Lyrics3v2((Lyrics3v2) mp3tag);
                } else {
                    lyric = new Lyrics3v2(mp3tag);
                }
                Iterator<Lyrics3v2Field> iterator = lyric.iterator();
                Lyrics3v2Field field;
                ID3v24Frame newFrame;
                while (iterator.hasNext()) {
                    try {
                        field = iterator.next();
View Full Code Here


                    lyric = new Lyrics3v2((Lyrics3v2) mp3tag);
                } else {
                    lyric = new Lyrics3v2(mp3tag);
                }
                Iterator<Lyrics3v2Field> iterator = lyric.iterator();
                Lyrics3v2Field field;
                ID3v24Frame newFrame;
                while (iterator.hasNext()) {
                    try {
                        field = iterator.next();
                        newFrame = new ID3v24Frame(field);
View Full Code Here

TOP

Related Classes of org.jaudiotagger.tag.lyrics3.FieldFrameBodyLYR

Copyright © 2018 www.massapicom. 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.