Autopsy  4.11.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
Classes | Public Member Functions | Private Member Functions | Private Attributes | Static Private Attributes | List of all members
org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel Class Reference

Inherits JPanel, and org.sleuthkit.autopsy.contentviewers.MediaFileViewer.MediaViewPanel.

Classes

class  ExtractMedia
 
class  VideoPanelUpdater
 

Public Member Functions

 MediaPlayerPanel () throws GstException, UnsatisfiedLinkError
 
List< String > getSupportedExtensions ()
 
List< String > getSupportedMimeTypes ()
 
boolean isSupported (AbstractFile file)
 

Private Member Functions

void customizeComponents ()
 
void enableComponents (boolean isEnabled)
 
String formatTime (long ns, boolean ceiling)
 
void initComponents ()
 
void initGst () throws GstException, UnsatisfiedLinkError
 
void playButtonActionPerformed (java.awt.event.ActionEvent evt)
 
void updateTimeLabel (long start, long total)
 

Private Attributes

javax.swing.JSlider audioSlider
 
javax.swing.JPanel controlPanel
 
Bus.EOS endOfStreamListener
 
Bus.ERROR errorListener
 
ExtractMedia extractMediaWorker
 
JavaFxAppSink fxAppSink
 
volatile PlayBin gstPlayBin
 
javax.swing.JLabel infoLabel
 
javax.swing.JButton playButton
 
javax.swing.JLabel progressLabel
 
javax.swing.JSlider progressSlider
 
Bus.STATE_CHANGED stateChangeListener
 
final Timer timer = new Timer(75, new VideoPanelUpdater())
 
javax.swing.JPanel videoPanel
 
javax.swing.JLabel VolumeIcon
 

Static Private Attributes

static final String[] FILE_EXTENSIONS
 
static final Logger logger = Logger.getLogger(MediaPlayerPanel.class.getName())
 
static final String MEDIA_PLAYER_ERROR_STRING
 
static final List< String > MIME_TYPES
 
static final int PROGRESS_SLIDER_SIZE = 2000
 

Detailed Description

This is a video player that is part of the Media View layered pane. It uses GStreamer to process the video and JavaFX to display it.

Definition at line 63 of file MediaPlayerPanel.java.

Constructor & Destructor Documentation

org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.MediaPlayerPanel ( ) throws GstException, UnsatisfiedLinkError

Creates new form MediaViewVideoPanel

Definition at line 188 of file MediaPlayerPanel.java.

Member Function Documentation

void org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.customizeComponents ( )
private

Keep the video from automatically playing

Definition at line 194 of file MediaPlayerPanel.java.

void org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.enableComponents ( boolean  isEnabled)
private

Definition at line 321 of file MediaPlayerPanel.java.

String org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.formatTime ( long  ns,
boolean  ceiling 
)
private

Convert nanoseconds into an HH:MM:SS format.

Definition at line 392 of file MediaPlayerPanel.java.

List<String> org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.getSupportedExtensions ( )

returns supported extensions (each starting with .)

Returns

Implements org.sleuthkit.autopsy.contentviewers.MediaFileViewer.MediaViewPanel.

Definition at line 329 of file MediaPlayerPanel.java.

List<String> org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.getSupportedMimeTypes ( )
Returns
supported mime types

Implements org.sleuthkit.autopsy.contentviewers.MediaFileViewer.MediaViewPanel.

Definition at line 334 of file MediaPlayerPanel.java.

void org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.initComponents ( )
private

This method is called from within the constructor to initialize the form. WARNING: Do NOT modify this code. The content of this method is always regenerated by the Form Editor.

Definition at line 526 of file MediaPlayerPanel.java.

void org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.initGst ( ) throws GstException, UnsatisfiedLinkError
private

Definition at line 254 of file MediaPlayerPanel.java.

boolean org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.isSupported ( AbstractFile  file)

Although it seems too restrictive, requiring both a supported extension and a supported MIME type prevents two undesirable behaviors:

1) Until AUT-1766 and AUT-1801 are fixed, we incorrectly identify all iff files as audio/aiff. This means that if this panel went with the looser 'mime type OR extension' criteria we use for images, then this panel would attempt (and fail) to display all iff files, even non audio ones.

2) The looser criteria means we are less confident about the files we are potentialy sending to GStreamer on 32bit jvms. We are less comfortable with the error handling for GStreamer, and don't want to send it files which might cause it trouble.

Implements org.sleuthkit.autopsy.contentviewers.MediaFileViewer.MediaViewPanel.

Definition at line 339 of file MediaPlayerPanel.java.

References org.sleuthkit.autopsy.modules.filetypeid.FileTypeDetector.getMIMEType().

void org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.playButtonActionPerformed ( java.awt.event.ActionEvent  evt)
private

Definition at line 631 of file MediaPlayerPanel.java.

void org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.updateTimeLabel ( long  start,
long  total 
)
private

Formats current time and total time as the following ratio: HH:MM:SS / HH:MM:SS

Parameters
start
total

Definition at line 381 of file MediaPlayerPanel.java.

Member Data Documentation

javax.swing.JSlider org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.audioSlider
private

Definition at line 642 of file MediaPlayerPanel.java.

javax.swing.JPanel org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.controlPanel
private

Definition at line 643 of file MediaPlayerPanel.java.

Bus.EOS org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.endOfStreamListener
private

Definition at line 177 of file MediaPlayerPanel.java.

Bus.ERROR org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.errorListener
private

Definition at line 175 of file MediaPlayerPanel.java.

ExtractMedia org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.extractMediaWorker
private

Definition at line 183 of file MediaPlayerPanel.java.

final String [] org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.FILE_EXTENSIONS
staticprivate
Initial value:
= new String[]{
".3g2",
".3gp",
".3gpp",
".aac",
".aif",
".aiff",
".amr",
".asf",
".au",
".avi",
".flac",
".flv",
".m4a",
".m4v",
".mka",
".mkv",
".mov",
".mp2",
".mp3",
".mp4",
".mpeg",
".mpg",
".mxf",
".ogg",
".wav",
".webm",
".wma",
".wmv",}

Definition at line 66 of file MediaPlayerPanel.java.

JavaFxAppSink org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.fxAppSink
private

Definition at line 174 of file MediaPlayerPanel.java.

volatile PlayBin org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.gstPlayBin
private

Definition at line 173 of file MediaPlayerPanel.java.

javax.swing.JLabel org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.infoLabel
private

Definition at line 644 of file MediaPlayerPanel.java.

final Logger org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.logger = Logger.getLogger(MediaPlayerPanel.class.getName())
staticprivate

Definition at line 168 of file MediaPlayerPanel.java.

final String org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.MEDIA_PLAYER_ERROR_STRING
staticprivate
Initial value:
= NbBundle.getMessage(MediaPlayerPanel.class,
"GstVideoPanel.cannotProcFile.err")

Definition at line 169 of file MediaPlayerPanel.java.

final List<String> org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.MIME_TYPES
staticprivate

Definition at line 95 of file MediaPlayerPanel.java.

javax.swing.JButton org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.playButton
private

Definition at line 645 of file MediaPlayerPanel.java.

final int org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.PROGRESS_SLIDER_SIZE = 2000
staticprivate

Definition at line 181 of file MediaPlayerPanel.java.

javax.swing.JLabel org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.progressLabel
private

Definition at line 646 of file MediaPlayerPanel.java.

javax.swing.JSlider org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.progressSlider
private

Definition at line 647 of file MediaPlayerPanel.java.

Bus.STATE_CHANGED org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.stateChangeListener
private

Definition at line 176 of file MediaPlayerPanel.java.

final Timer org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.timer = new Timer(75, new VideoPanelUpdater())
private

Definition at line 180 of file MediaPlayerPanel.java.

javax.swing.JPanel org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.videoPanel
private

Definition at line 648 of file MediaPlayerPanel.java.

javax.swing.JLabel org.sleuthkit.autopsy.contentviewers.MediaPlayerPanel.VolumeIcon
private

Definition at line 641 of file MediaPlayerPanel.java.


The documentation for this class was generated from the following file:

Copyright © 2012-2018 Basis Technology. Generated on: Fri Jun 21 2019
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.