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

nl.vpro.domain.subtitles.SubtitlesMetadata 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.3
Show newest version
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