diff --git a/Core/src/org/sleuthkit/autopsy/coreutils/VideoSnapShotWorker.java b/Core/src/org/sleuthkit/autopsy/coreutils/VideoSnapShotWorker.java index 6e58c6313c..80e3a9171c 100755 --- a/Core/src/org/sleuthkit/autopsy/coreutils/VideoSnapShotWorker.java +++ b/Core/src/org/sleuthkit/autopsy/coreutils/VideoSnapShotWorker.java @@ -61,7 +61,7 @@ public class VideoSnapShotWorker extends SwingWorker{ * @param abstractFile The path to the existing video. * @param outputFile The output path of the snapshot video. */ - VideoSnapShotWorker(AbstractFile abstractFile, File outputFile) { + public VideoSnapShotWorker(AbstractFile abstractFile, File outputFile) { this(abstractFile, outputFile, DEFAULT_TOTAL_FRAMES, DEFAULT_SCALE, DEFAULT_FRAMES_PER_SECOND); } @@ -82,7 +82,7 @@ public class VideoSnapShotWorker extends SwingWorker{ this.framesPerSecond = framesPerSecond; } - static boolean isSupported(AbstractFile file) { + public static boolean isSupported(AbstractFile file) { return isVideoThumbnailSupported(file); }