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

fr.noop.subtitle.vtt.VttLine Maven / Gradle / Ivy

Go to download

Convert subtitles from one format to another format. Supported formats: STL EBU, TTML, SMI, VTT, SRT, ASS

The newest version!
/*
 *  This file is part of the noOp organization .
 *
 *  (c) Cyrille Lebeaupin 
 *
 *  For the full copyright and license information, please view the LICENSE
 *  file that was distributed with this source code.
 *
 */

package fr.noop.subtitle.vtt;

import fr.noop.subtitle.util.SubtitleTextLine;

/**
 * Created by clebeaupin on 14/10/15.
 */
public class VttLine extends SubtitleTextLine {
    private String voice;

    public String getVoice() {
        return this.voice;
    }

    public void setVoice(String voice) {
        this.voice = voice;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy