nl.vpro.api.rs.subtitles.VTTWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of subtitles-domain Show documentation
Show all versions of subtitles-domain Show documentation
Subtitles are related to media, but are implemented completely parallel. Classes to contain, parse, and assemble subtitle objects are here.
The newest version!
package nl.vpro.api.rs.subtitles;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Iterator;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.ext.Provider;
import nl.vpro.domain.subtitles.Cue;
import nl.vpro.domain.subtitles.SubtitlesFormat;
import nl.vpro.domain.subtitles.SubtitlesUtil;
import static nl.vpro.api.rs.subtitles.Constants.*;
/**
* @author Michiel Meeuwissen
* @since 4.8
*/
@Provider
@Produces(VTT)
public class VTTWriter extends AbstractIteratorWriter {
public VTTWriter() {
super(SubtitlesFormat.WEBVTT);
}
@Override
protected void stream(Iterator cueIterator, OutputStream entityStream) throws IOException {
SubtitlesUtil.toVTT(cueIterator, entityStream);
}
}