All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.vpro.api.rs.subtitles.TT888SubtitlesReader Maven / Gradle / Ivy

Go to download

Subtitles are related to media, but are implemented completely parallel. Classes to contain, parse, and assemble subtitle objects are here.

There is a newer version: 8.3.0
Show newest version
package nl.vpro.api.rs.subtitles;

import javax.ws.rs.Consumes;
import javax.ws.rs.ext.Provider;

import nl.vpro.domain.subtitles.SubtitlesFormat;

/**
 * @author Michiel Meeuwissen
 * @since 5.1
 */
@Provider
@Consumes(Constants.TT888)
public class TT888SubtitlesReader extends AbstractSubtitlesReader {


    public TT888SubtitlesReader() {
        super(SubtitlesFormat.TT888);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy