1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-15 13:55:03 -05:00
filebot/source/net/sourceforge/filebot/web/SubtitleProvider.java
Reinhard Pointner 916f168d98 + added support for subtitle download via video/movie hash
* added video/subtitle file drop target in SubtitlePanel
* added VideoHashSubtitleDownloadDialog
2009-10-21 22:39:02 +00:00

31 lines
504 B
Java

package net.sourceforge.filebot.web;
import java.net.URI;
import java.util.List;
import javax.swing.Icon;
public interface SubtitleProvider {
public List<SearchResult> search(String query) throws Exception;
public List<SubtitleDescriptor> getSubtitleList(SearchResult searchResult, String languageName) throws Exception;
public URI getSubtitleListLink(SearchResult searchResult, String languageName);
public String getName();
public URI getLink();
public Icon getIcon();
}