mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-15 05:45:05 -05:00
9 lines
148 B
Java
9 lines
148 B
Java
package net.filebot.subtitle;
|
|
|
|
import java.util.stream.Stream;
|
|
|
|
public interface SubtitleDecoder {
|
|
|
|
Stream<SubtitleElement> decode(String file);
|
|
|
|
} |