Examples of TagWriteException


Examples of com.tulskiy.musique.audio.TagWriteException

            handleTrackDiscFields(abstractTag, track);
      // workaround since genre and genre custom field types used
            handleGenreFields(abstractTag, track);
            AudioFileIO.write(af1);
        } catch (Exception e) {
            throw new TagWriteException(e);
        }
    }
View Full Code Here

Examples of com.tulskiy.musique.audio.TagWriteException

            org.jaudiotagger.audio.AudioFile af1 = AudioFileIO.read(track.getTrackData().getFile());
            Tag abstractTag = af1.getTagOrCreateDefault();
            copyTagFields(abstractTag, new VorbisCommentTag(), track);
            AudioFileIO.write(af1);
        } catch (Exception e) {
            throw new TagWriteException(e);
        }
    }
View Full Code Here

Examples of com.tulskiy.musique.audio.TagWriteException

                mp3File.setID3v1Tag(id3v1Tag);
                mp3File.setID3v2Tag(id3v2tag);

                mp3File.commit();
            } catch (Exception e) {
                throw new TagWriteException(e);
            }
        }
    }
View Full Code Here

Examples of com.tulskiy.musique.audio.TagWriteException

    @Override
    public void write(Track track) throws TagWriteException {
        try {
            tagProcessor.writeAPEv2Tag(track);
        } catch (IOException e) {
            throw new TagWriteException(e);
        }
    }
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.