Autopsy 4.22.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
VideoFrame.java
Go to the documentation of this file.
1package org.sleuthkit.autopsy.corecomponents;
2
3import java.awt.Image;
4
8public class VideoFrame {
9
10 private Image frame;
11 private long timeMillis;
12
13 public VideoFrame(Image frame, long timeMillis) {
14 this.frame = frame;
15 this.timeMillis = timeMillis;
16 }
17
18 public Image getFrame() {
19 return frame;
20 }
21
22 public long getTimeMillis() {
23 return timeMillis;
24 }
25}
VideoFrame(Image frame, long timeMillis)

Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.