public class OggFileWriter extends AudioFileWriter
Modifier and Type | Field and Description |
---|---|
static java.util.logging.Logger |
logger |
private OggVorbisTagWriter |
vtw |
Constructor and Description |
---|
OggFileWriter() |
Modifier and Type | Method and Description |
---|---|
protected void |
deleteTag(java.io.RandomAccessFile raf,
java.io.RandomAccessFile tempRaf)
Same as above, but delete tag in the file.
|
protected void |
writeTag(Tag tag,
java.io.RandomAccessFile raf,
java.io.RandomAccessFile rafTemp)
This is called when a tag has to be written in a file.
|
delete, delete, setAudioFileModificationListener, write
public static java.util.logging.Logger logger
private OggVorbisTagWriter vtw
protected void writeTag(Tag tag, java.io.RandomAccessFile raf, java.io.RandomAccessFile rafTemp) throws CannotReadException, CannotWriteException, java.io.IOException
AudioFileWriter
writeTag
in class AudioFileWriter
CannotReadException
CannotWriteException
- when an error occured during the generation of the tagjava.io.IOException
- is thrown when the RandomAccessFile operations throw it (you
should never throw them manually)protected void deleteTag(java.io.RandomAccessFile raf, java.io.RandomAccessFile tempRaf) throws CannotReadException, CannotWriteException, java.io.IOException
AudioFileWriter
deleteTag
in class AudioFileWriter
CannotReadException
CannotWriteException
- when an error occured during the deletion of the tagjava.io.IOException
- is thrown when the RandomAccessFile operations throw it (you
should never throw them manually)Copyright © 2005-2013 java.net. All Rights Reserved.