mirror of
https://github.com/mitb-archive/filebot
synced 2025-03-09 22:09:47 -04:00
20 lines
550 B
Java
20 lines
550 B
Java
package net.filebot.web;
|
|
|
|
import java.net.URI;
|
|
import java.util.List;
|
|
import java.util.Locale;
|
|
|
|
public interface SubtitleProvider extends Datasource {
|
|
|
|
public List<SubtitleSearchResult> search(String query) throws Exception;
|
|
|
|
public List<SubtitleSearchResult> guess(String tag) throws Exception;
|
|
|
|
public List<SubtitleDescriptor> getSubtitleList(SubtitleSearchResult searchResult, int[][] episodeFilter, Locale locale) throws Exception;
|
|
|
|
public URI getSubtitleListLink(SubtitleSearchResult searchResult, Locale locale);
|
|
|
|
public URI getLink();
|
|
|
|
}
|