Added some more video formats to SigTypeToExtMap.

This commit is contained in:
Samuel H. Kenyon 2013-12-06 18:18:03 -05:00
parent 97e20f799e
commit f39ca5e573

View File

@ -152,6 +152,9 @@ public class FileExtMismatchIngestModule extends org.sleuthkit.autopsy.ingest.In
SigTypeToExtMap.put("video/x-ms-wmv", new String[]{"wmv"});
SigTypeToExtMap.put("video/mpeg", new String[]{"mpeg","mpg"});
SigTypeToExtMap.put("video/x-flv", new String[]{"flv"});
SigTypeToExtMap.put("application/vnd.rn-realmedia", new String[]{"rm"});
SigTypeToExtMap.put("application/vnd.rn-realvideo", new String[]{"rv"});
SigTypeToExtMap.put("application/x-shockwave-flash", new String[]{"swf"});
try {
List<String> textPlainExts = new ArrayList<>();