filebot/source/net/filebot/web/MusicIdentificationService.java
2014-04-19 06:30:29 +00:00

22 lines
265 B
Java

package net.filebot.web;
import java.io.File;
import java.util.Map;
import javax.swing.Icon;
public interface MusicIdentificationService {
String getName();
Icon getIcon();
Map<File, AudioTrack> lookup(Iterable<File> files) throws Exception;
}