30 lines
740 B
Java
30 lines
740 B
Java
|
|
package net.sourceforge.filebot.cli;
|
|
|
|
|
|
import java.io.File;
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
|
|
|
|
public interface CmdlineInterface {
|
|
|
|
List<File> rename(Collection<File> files, String query, String format, String db, String lang, boolean strict) throws Exception;
|
|
|
|
|
|
List<File> getSubtitles(Collection<File> files, String query, String lang, String output, String encoding) throws Exception;
|
|
|
|
|
|
boolean check(Collection<File> files) throws Exception;
|
|
|
|
|
|
File compute(Collection<File> files, String output, String encoding) throws Exception;
|
|
|
|
|
|
List<String> fetchEpisodeList(String query, String format, String db, String lang) throws Exception;
|
|
|
|
|
|
String getMediaInfo(File file, String format) throws Exception;
|
|
|
|
}
|