com.mp4parser.iso14496.part30.WebVTTSampleEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isoparser Show documentation
Show all versions of isoparser Show documentation
A generic parser and writer for all ISO 14496 based files (MP4, Quicktime, DCF, PDCF, ...)
package com.mp4parser.iso14496.part30;
import com.coremedia.iso.BoxParser;
import com.coremedia.iso.boxes.sampleentry.AbstractSampleEntry;
import com.googlecode.mp4parser.DataSource;
import com.googlecode.mp4parser.util.Path;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.WritableByteChannel;
/**
* Created by sannies on 04.12.2014.
*/
public class WebVTTSampleEntry extends AbstractSampleEntry {
public static final String TYPE = "wvtt";
public WebVTTSampleEntry() {
super(TYPE);
}
@Override
public void parse(DataSource dataSource, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException {
initContainer(dataSource, contentSize, boxParser);
}
@Override
public void getBox(WritableByteChannel writableByteChannel) throws IOException {
writableByteChannel.write(getHeader());
writeContainer(writableByteChannel);
}
public WebVTTConfigurationBox getConfig() {
return Path.getPath(this, "vttC");
}
public WebVTTSourceLabelBox getSourceLabel() {
return Path.getPath(this, "vlab");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy