nl.vpro.domain.subtitles.SubtitlesMetadata 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.
package nl.vpro.domain.subtitles;
import java.time.Duration;
import nl.vpro.domain.media.support.OwnerType;
/**
* A cheaper view on {@link Subtitles}, most fields, but most importantly not {@link Subtitles#getContent()}
*
* @author Michiel Meeuwissen
* @since 5.5
*/
public interface SubtitlesMetadata {
SubtitlesId getId();
OwnerType getOwner();
Duration getOffset();
Integer getCueCount();
SubtitlesWorkflow getWorkflow();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy