FileDocCategorySizeDatePackage
SrtParserTest.javaAPI Docmp4parser 1.0-RC-17467Wed Dec 19 20:10:21 GMT 2012com.googlecode.mp4parser.authoring.subtext

SrtParserTest.java

package com.googlecode.mp4parser.authoring.subtext;

import com.googlecode.mp4parser.authoring.tracks.TextTrackImpl;
import com.googlecode.mp4parser.srt.SrtParser;
import org.junit.Test;

import java.io.IOException;
import java.io.InputStream;


public class SrtParserTest {
    @Test
    public void test() throws IOException {
        InputStream is = SrtParserTest.class.getResourceAsStream("/subs.srt");
        TextTrackImpl track = SrtParser.parse(is);
    }
}