22 lines
674 B
Java
22 lines
674 B
Java
package ctbrec.ui.tabs;
|
|
|
|
import java.io.IOException;
|
|
|
|
import ctbrec.Config;
|
|
import ctbrec.Recording;
|
|
import ctbrec.recorder.RecordingManager;
|
|
import ctbrec.recorder.postprocessing.AbstractPlaceholderAwarePostProcessor;
|
|
|
|
public class DownloadPostprocessor extends AbstractPlaceholderAwarePostProcessor {
|
|
|
|
@Override
|
|
public String getName() {
|
|
return "download renamer";
|
|
}
|
|
|
|
@Override
|
|
public void postprocess(Recording rec, RecordingManager recordingManager, Config config) throws IOException, InterruptedException {
|
|
// nothing really to do in here, we just inherit from AbstractPlaceholderAwarePostProcessor to use fillInPlaceHolders
|
|
}
|
|
}
|