Develop your own plugins today
If you are a developer and want to make yourself known by other users you can develop your own plugins for Zortam Online Autotagger.
Our application will load any jar files from your user.home directory containing the class logic.plugins.Plugin. So if you want, you can develop your own plugins and submit them here, so other users can download and use them.
The plugins you will develop need to be in a specific format. It should be derived from this abstract class.
public abstract class Mp3Plugin {
public abstract String getName();
public abstract boolean configure(Frame parent);
public abstract void process(Frame parent, IMp3PluginNotifier notifier);
...
}
Also, the IMp3PluginNotifier will help you control the progress bar.
public interface IMp3PluginNotifier {
public abstract void setProgressInfo(String text);
}
Attached is a sample project developed using NetBeans. Your plugins need to have the same format.
Download sample plugin
If you have any other concerns or questions about developing plugins, feel free to contact us at support AT zortam DOT com.
Submit your plugin here
Once your plugin will be verified by a human being, it will be posted on the website, with your name also.
Submitted plugins
Sample plugin by George
This is a very simple mock-up for plugins. Enjoy