/* * Copyright (c) 2008, 2009, 2010, 2011 Denis Tulskiy * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * version 3 along with this work. If not, see <http://www.gnu.org/licenses/>. */ package com.tulskiy.musique.audio.formats.ogg; import org.jaudiotagger.audio.AudioFileIO; import org.jaudiotagger.tag.Tag; import org.jaudiotagger.tag.vorbiscomment.VorbisCommentTag; import com.tulskiy.musique.audio.AudioTagWriter; import com.tulskiy.musique.audio.TagWriteException; import com.tulskiy.musique.playlist.Track; /** * @Author: Denis Tulskiy * @Date: Oct 10, 2009 */ public class VorbisTagWriter extends AudioTagWriter { @Override public void write(Track track) throws TagWriteException { try { 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); } } @Override public boolean isFileSupported(String ext) { return ext.equalsIgnoreCase("flac") || ext.equalsIgnoreCase("ogg"); } }