Skip to content

Instantly share code, notes, and snippets.

@moshen
Last active February 16, 2024 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moshen/784ee4a38439f00b17855233617e9e13 to your computer and use it in GitHub Desktop.
Save moshen/784ee4a38439f00b17855233617e9e13 to your computer and use it in GitHub Desktop.
Magika Benchmark
python
file-examples

A Simple Magika Benchmark

Setup

From scratch run:

make clean-all init analyze

This takes a while, so I've committed the data from my machine

Run

make
sqlite3 < analyze.sql
file_avg              python_avg         python_x_times_slower_single_cli
--------------------  -----------------  --------------------------------
0.000874874856301821  0.179884610224334  205.611818568799
file_avg            python_avg     python_x_times_slower_bulk_cli
------------------  -------------  ------------------------------
0.0229037048478788  0.71230794506  31.1001189454277
create table test_single(command TEXT, mean NUM, stddev NUM, median NUM, user NUM, system NUM, min NUM, max NUM, parameter_F TEXT);
create table test_bulk(command TEXT, mean NUM, stddev NUM, median NUM, user NUM, system NUM, min NUM, max NUM);
.mode csv
.import test-single.csv test_single
.import test-bulk.csv test_bulk
.mode column
with file as (select avg(mean) avg_mean from test_single where command like 'file%'),
python as (select avg(mean) avg_mean from test_single where command like 'PYTHON%')
select file.avg_mean as file_avg, python.avg_mean as python_avg, (python.avg_mean / file.avg_mean) as python_x_times_slower_single_cli from file, python;
with file as (select avg(mean) avg_mean from test_bulk where command like 'file%'),
python as (select avg(mean) avg_mean from test_bulk where command like 'PYTHON%')
select file.avg_mean as file_avg, python.avg_mean as python_avg, (python.avg_mean / file.avg_mean) as python_x_times_slower_bulk_cli from file, python;
SHELL := /bin/bash
file_list := $(shell find ./file-examples/ -type f -not -path './file-examples/.git/*')
comma_delimited_file_list := $(shell printf "%s" "${file_list}" | tr ' ' ',')
.PHONY: analyze
analyze: test-bulk.csv test-single.csv
sqlite3 < analyze.sql
test-bulk.csv:
hyperfine -w 20 --export-csv test-bulk.csv 'PYTHONPATH="$$PWD/python" ./python/bin/magika ${file_list}' 'file ${file_list}'
test-single.csv:
hyperfine -w 20 --export-csv test-single.csv -L 'F' "${comma_delimited_file_list}" 'file {F}' 'PYTHONPATH="$$PWD/python" ./python/bin/magika {F}'
.PHONY: init
init:
git clone git@github.com:moshen/file-examples-fork.git file-examples
pip3 install magika -t python
.PHONY: clean-csv
clean-csv:
rm test-single.csv test-bulk.csv
.PHONY: clean-all
clean-all: clean-csv
rm -rf python file-examples
command mean stddev median user system min max
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_AVI_480_750kB.avi ./file-examples/2018/04/file_example_AVI_640_800kB.avi ./file-examples/2018/04/file_example_OGG_1280_11_4mg.ogg ./file-examples/2018/04/file_example_WMV_480_1_2MB.wmv ./file-examples/2018/04/file_example_MOV_1920_2_2MB.mov ./file-examples/2018/04/file_example_WMV_640_1_6MB.wmv ./file-examples/2018/04/file_example_AVI_1920_2_3MG.avi ./file-examples/2018/04/file_example_OGG_480_1_7mg.ogg ./file-examples/2018/04/file_example_MOV_1280_1_4MB.mov ./file-examples/2018/04/file_example_WMV_1920_9_3MB.wmv ./file-examples/2018/04/file_example_OGG_640_2_7mg.ogg ./file-examples/2018/04/file_example_MOV_480_700kB.mov ./file-examples/2018/04/file_example_OGG_1920_13_3mg.ogg ./file-examples/2018/04/file_example_MOV_640_800kB.mov ./file-examples/2018/04/file_example_WMV_1280_4_9MB.wmv ./file-examples/2018/04/file_example_AVI_1280_1_5MG.avi ./file-examples/2019/09/file-sample_300kB.rtf ./file-examples/2019/09/file-sample_1MB.rtf ./file-examples/2019/09/file-sample_100kB.rtf ./file-examples/2019/09/file-sample_500kB.rtf ./file-examples/2020/03/file_example_SVG_20kB.svg ./file-examples/2020/03/file_example_WEBM_480_900KB.webm ./file-examples/2020/03/file_example_WEBM_1920_3_7MB.webm ./file-examples/2020/03/file_example_SVG_30kB.svg ./file-examples/2020/03/file_example_WEBM_1280_3_6MB.webm ./file-examples/2020/03/file_example_WEBM_640_1_4MB.webm ./file-examples/2020/03/file_example_WEBP_50kB.webp ./file-examples/2020/03/file_example_WEBP_500kB.webp ./file-examples/2020/03/file_example_WEBP_250kB.webp ./file-examples/2020/03/file_example_WEBP_1500kB.webp ./file-examples/2017/file-sample.doc ./file-examples/2017/02/zip_5MB.zip ./file-examples/2017/02/file_example_XLS_10.xls ./file-examples/2017/02/zip_9MB.zip ./file-examples/2017/02/file_example_XLSX_10.xlsx ./file-examples/2017/02/file-sample_500kB.docx ./file-examples/2017/02/file-sample.doc ./file-examples/2017/02/file_example_XLS_5000.xls ./file-examples/2017/02/file-sample_1MB.doc ./file-examples/2017/02/file_example_XLSX_50.xlsx ./file-examples/2017/02/file_example_XLS_50.xls ./file-examples/2017/02/file_example_XLSX_5000.xlsx ./file-examples/2017/02/file_example_CSV_5000.csv ./file-examples/2017/02/file-sample_100kB.doc ./file-examples/2017/02/zip_10MB.zip ./file-examples/2017/02/file_example_XLS_100.xls ./file-examples/2017/02/file_example_JSON_1kb.json ./file-examples/2017/02/zip_2MB.zip ./file-examples/2017/02/file_example_XLS_1000.xls ./file-examples/2017/02/file-sample_1MB.docx ./file-examples/2017/02/file-sample_100kB.docx ./file-examples/2017/02/file_example_XLSX_100.xlsx ./file-examples/2017/02/file_example_XML_24kb.xml ./file-examples/2017/02/index.html ./file-examples/2017/02/file-sample_500kB.doc ./file-examples/2017/02/file_example_XLSX_1000.xlsx ./file-examples/2017/11/file_example_WAV_2MG.wav ./file-examples/2017/11/file_example_WAV_10MG.wav ./file-examples/2017/11/file_example_MP3_5MG.mp3 ./file-examples/2017/11/file_example_MP3_700KB.mp3 ./file-examples/2017/11/file_example_WAV_5MG.wav ./file-examples/2017/11/file_example_MP3_2MG.mp3 ./file-examples/2017/11/file_example_OOG_5MG.ogg ./file-examples/2017/11/file_example_OOG_2MG.ogg ./file-examples/2017/11/file_example_MP3_1MG.mp3 ./file-examples/2017/11/file_example_WAV_1MG.wav ./file-examples/2017/11/file_example_OOG_1MG.ogg ./file-examples/2017/04/file_example_MP4_1280_10MG.mp4 ./file-examples/2017/04/SampleVideo_1280x720_1mb.mp4 ./file-examples/2017/04/file_example_MP4_480_1_5MG.mp4 ./file-examples/2017/04/file_example_MP4_640_3MG.mp4 ./file-examples/2017/04/file_example_MP4_1920_18MG.mp4 ./file-examples/2017/08/file_example_PPT_500kB.ppt ./file-examples/2017/08/file_example_PPT_250kB.ppt ./file-examples/2017/08/file_example_PPT_1MB.ppt ./file-examples/2017/10/file_example_JPG_100kB.jpg ./file-examples/2017/10/file_example_PNG_3MB-150x150.png ./file-examples/2017/10/file-sample_1MB.odt ./file-examples/2017/10/file_example_PNG_2500kB-1024x683.jpg ./file-examples/2017/10/file-example_PDF_500_kB-pdf-106x150.jpg ./file-examples/2017/10/file_example_PNG_1MB-1024x682.png ./file-examples/2017/10/file-example_PDF_500_kB-pdf-212x300.jpg ./file-examples/2017/10/file_example_PNG_2100kB-1024x683.png ./file-examples/2017/10/file_example_JPG_100kB-768x512.jpg ./file-examples/2017/10/file_example_JPG_1MB-1024x683.jpg ./file-examples/2017/10/file_example_PNG_2100kB-768x512.png ./file-examples/2017/10/file-sample_150kB.pdf ./file-examples/2017/10/file_example_ODS_10.ods ./file-examples/2017/10/file-example_PDF_500_kB-pdf.jpg ./file-examples/2017/10/file_example_GIF_1MB-768x512.gif ./file-examples/2017/10/file_example_JPG_2500kB-150x150.jpg ./file-examples/2017/10/file_example_PNG_2500kB-768x512.jpg ./file-examples/2017/10/file_example_GIF_1MB-300x200.gif ./file-examples/2017/10/file_example_JPG_1MB-768x512.jpg ./file-examples/2017/10/file-sample_150kB-pdf-212x300.jpg ./file-examples/2017/10/file_example_JPG_1MB-300x200.jpg ./file-examples/2017/10/file_example_PNG_2500kB-150x150.jpg ./file-examples/2017/10/file-sample_100kB.odt ./file-examples/2017/10/file_example_GIF_500kB-150x150.gif ./file-examples/2017/10/file-sample_150kB-pdf-106x150.jpg ./file-examples/2017/10/file_example_PNG_3MB.png ./file-examples/2017/10/file_example_JPG_500kB-300x200.jpg ./file-examples/2017/10/file_example_favicon.ico ./file-examples/2017/10/file_example_GIF_1MB-1024x683.gif ./file-examples/2017/10/file_example_GIF_500kB.gif ./file-examples/2017/10/file_example_PNG_2100kB-150x150.png ./file-examples/2017/10/file_example_GIF_3500kB-1024x683.gif ./file-examples/2017/10/file_example_ODS_5000.ods ./file-examples/2017/10/file_example_PNG_2100kB-300x200.png ./file-examples/2017/10/file_example_PNG_1MB-768x512.png ./file-examples/2017/10/file_example_ODS_1000.ods ./file-examples/2017/10/file_example_PNG_500kB.png ./file-examples/2017/10/file_example_PNG_1MB-150x150.png ./file-examples/2017/10/file_example_PNG_3MB-300x200.png ./file-examples/2017/10/file_example_PNG_2100kB.png ./file-examples/2017/10/file_example_GIF_500kB-1024x683.gif ./file-examples/2017/10/file-example_PDF_1MB-pdf.jpg ./file-examples/2017/10/file_example_GIF_1MB.gif ./file-examples/2017/10/file-example_PDF_1MB.pdf ./file-examples/2017/10/file_example_GIF_3500kB-150x150.gif ./file-examples/2017/10/file-example_PDF_1MB-pdf-106x150.jpg ./file-examples/2017/10/file_example_GIF_3500kB-768x512.gif ./file-examples/2017/10/file_example_PNG_1MB-300x200.png ./file-examples/2017/10/file_example_GIF_500kB-768x512.gif ./file-examples/2017/10/file-example_PDF_500_kB.pdf ./file-examples/2017/10/file_example_PNG_500kB-768x511.png ./file-examples/2017/10/file_example_GIF_3500kB-300x200.gif ./file-examples/2017/10/file_example_JPG_2500kB.jpg ./file-examples/2017/10/file_example_JPG_2500kB-1024x683.jpg ./file-examples/2017/10/file_example_JPG_2500kB-768x512.jpg ./file-examples/2017/10/file_example_PNG_500kB-300x200.png ./file-examples/2017/10/file_example_JPG_500kB-768x512.jpg ./file-examples/2017/10/file-sample_500kB.odt ./file-examples/2017/10/file_example_ODP_1MB.odp ./file-examples/2017/10/file_example_PNG_2500kB.jpg ./file-examples/2017/10/file_example_TIFF_1MB.tiff ./file-examples/2017/10/file_example_ODS_100.ods ./file-examples/2017/10/file_example_PNG_1MB.png ./file-examples/2017/10/file-sample_150kB-pdf-724x1024.jpg ./file-examples/2017/10/file-example_PDF_1MB-pdf-212x300.jpg ./file-examples/2017/10/file_example_ODP_500kB.odp ./file-examples/2017/10/file_example_JPG_100kB-1024x683.jpg ./file-examples/2017/10/file_example_PNG_500kB-150x150.png ./file-examples/2017/10/file_example_JPG_500kB-150x150.jpg ./file-examples/2017/10/410.svg ./file-examples/2017/10/file-example_PDF_500_kB-pdf-724x1024.jpg ./file-examples/2017/10/file_example_JPG_1MB.jpg ./file-examples/2017/10/file_example_GIF_3500kB.gif ./file-examples/2017/10/file_example_GIF_500kB-300x200.gif ./file-examples/2017/10/file_example_PNG_3MB-1024x683.png ./file-examples/2017/10/file_example_TIFF_10MB.tiff ./file-examples/2017/10/file_example_TIFF_5MB.tiff ./file-examples/2017/10/file_example_PNG_3MB-768x512.png ./file-examples/2017/10/file-example_PDF_1MB-pdf-724x1024.jpg ./file-examples/2017/10/file_example_JPG_500kB-1024x683.jpg ./file-examples/2017/10/file_example_JPG_500kB.jpg ./file-examples/2017/10/file_example_JPG_100kB-150x150.jpg ./file-examples/2017/10/file_example_ODP_200kB.odp ./file-examples/2017/10/file_example_JPG_100kB-300x200.jpg ./file-examples/2017/10/file_example_PNG_2500kB-300x200.jpg ./file-examples/2017/10/file-sample_150kB-pdf.jpg ./file-examples/2017/10/file_example_JPG_1MB-150x150.jpg ./file-examples/2017/10/file_example_GIF_1MB-150x150.gif ./file-examples/2017/10/file_example_JPG_2500kB-300x200.jpg 0.69613745142 0.029254196058669336 0.6885495595200001 10.15896738 1.5855028399999997 0.6674980715200001 0.7610698315200001
file ./file-examples/2018/04/file_example_AVI_480_750kB.avi ./file-examples/2018/04/file_example_AVI_640_800kB.avi ./file-examples/2018/04/file_example_OGG_1280_11_4mg.ogg ./file-examples/2018/04/file_example_WMV_480_1_2MB.wmv ./file-examples/2018/04/file_example_MOV_1920_2_2MB.mov ./file-examples/2018/04/file_example_WMV_640_1_6MB.wmv ./file-examples/2018/04/file_example_AVI_1920_2_3MG.avi ./file-examples/2018/04/file_example_OGG_480_1_7mg.ogg ./file-examples/2018/04/file_example_MOV_1280_1_4MB.mov ./file-examples/2018/04/file_example_WMV_1920_9_3MB.wmv ./file-examples/2018/04/file_example_OGG_640_2_7mg.ogg ./file-examples/2018/04/file_example_MOV_480_700kB.mov ./file-examples/2018/04/file_example_OGG_1920_13_3mg.ogg ./file-examples/2018/04/file_example_MOV_640_800kB.mov ./file-examples/2018/04/file_example_WMV_1280_4_9MB.wmv ./file-examples/2018/04/file_example_AVI_1280_1_5MG.avi ./file-examples/2019/09/file-sample_300kB.rtf ./file-examples/2019/09/file-sample_1MB.rtf ./file-examples/2019/09/file-sample_100kB.rtf ./file-examples/2019/09/file-sample_500kB.rtf ./file-examples/2020/03/file_example_SVG_20kB.svg ./file-examples/2020/03/file_example_WEBM_480_900KB.webm ./file-examples/2020/03/file_example_WEBM_1920_3_7MB.webm ./file-examples/2020/03/file_example_SVG_30kB.svg ./file-examples/2020/03/file_example_WEBM_1280_3_6MB.webm ./file-examples/2020/03/file_example_WEBM_640_1_4MB.webm ./file-examples/2020/03/file_example_WEBP_50kB.webp ./file-examples/2020/03/file_example_WEBP_500kB.webp ./file-examples/2020/03/file_example_WEBP_250kB.webp ./file-examples/2020/03/file_example_WEBP_1500kB.webp ./file-examples/2017/file-sample.doc ./file-examples/2017/02/zip_5MB.zip ./file-examples/2017/02/file_example_XLS_10.xls ./file-examples/2017/02/zip_9MB.zip ./file-examples/2017/02/file_example_XLSX_10.xlsx ./file-examples/2017/02/file-sample_500kB.docx ./file-examples/2017/02/file-sample.doc ./file-examples/2017/02/file_example_XLS_5000.xls ./file-examples/2017/02/file-sample_1MB.doc ./file-examples/2017/02/file_example_XLSX_50.xlsx ./file-examples/2017/02/file_example_XLS_50.xls ./file-examples/2017/02/file_example_XLSX_5000.xlsx ./file-examples/2017/02/file_example_CSV_5000.csv ./file-examples/2017/02/file-sample_100kB.doc ./file-examples/2017/02/zip_10MB.zip ./file-examples/2017/02/file_example_XLS_100.xls ./file-examples/2017/02/file_example_JSON_1kb.json ./file-examples/2017/02/zip_2MB.zip ./file-examples/2017/02/file_example_XLS_1000.xls ./file-examples/2017/02/file-sample_1MB.docx ./file-examples/2017/02/file-sample_100kB.docx ./file-examples/2017/02/file_example_XLSX_100.xlsx ./file-examples/2017/02/file_example_XML_24kb.xml ./file-examples/2017/02/index.html ./file-examples/2017/02/file-sample_500kB.doc ./file-examples/2017/02/file_example_XLSX_1000.xlsx ./file-examples/2017/11/file_example_WAV_2MG.wav ./file-examples/2017/11/file_example_WAV_10MG.wav ./file-examples/2017/11/file_example_MP3_5MG.mp3 ./file-examples/2017/11/file_example_MP3_700KB.mp3 ./file-examples/2017/11/file_example_WAV_5MG.wav ./file-examples/2017/11/file_example_MP3_2MG.mp3 ./file-examples/2017/11/file_example_OOG_5MG.ogg ./file-examples/2017/11/file_example_OOG_2MG.ogg ./file-examples/2017/11/file_example_MP3_1MG.mp3 ./file-examples/2017/11/file_example_WAV_1MG.wav ./file-examples/2017/11/file_example_OOG_1MG.ogg ./file-examples/2017/04/file_example_MP4_1280_10MG.mp4 ./file-examples/2017/04/SampleVideo_1280x720_1mb.mp4 ./file-examples/2017/04/file_example_MP4_480_1_5MG.mp4 ./file-examples/2017/04/file_example_MP4_640_3MG.mp4 ./file-examples/2017/04/file_example_MP4_1920_18MG.mp4 ./file-examples/2017/08/file_example_PPT_500kB.ppt ./file-examples/2017/08/file_example_PPT_250kB.ppt ./file-examples/2017/08/file_example_PPT_1MB.ppt ./file-examples/2017/10/file_example_JPG_100kB.jpg ./file-examples/2017/10/file_example_PNG_3MB-150x150.png ./file-examples/2017/10/file-sample_1MB.odt ./file-examples/2017/10/file_example_PNG_2500kB-1024x683.jpg ./file-examples/2017/10/file-example_PDF_500_kB-pdf-106x150.jpg ./file-examples/2017/10/file_example_PNG_1MB-1024x682.png ./file-examples/2017/10/file-example_PDF_500_kB-pdf-212x300.jpg ./file-examples/2017/10/file_example_PNG_2100kB-1024x683.png ./file-examples/2017/10/file_example_JPG_100kB-768x512.jpg ./file-examples/2017/10/file_example_JPG_1MB-1024x683.jpg ./file-examples/2017/10/file_example_PNG_2100kB-768x512.png ./file-examples/2017/10/file-sample_150kB.pdf ./file-examples/2017/10/file_example_ODS_10.ods ./file-examples/2017/10/file-example_PDF_500_kB-pdf.jpg ./file-examples/2017/10/file_example_GIF_1MB-768x512.gif ./file-examples/2017/10/file_example_JPG_2500kB-150x150.jpg ./file-examples/2017/10/file_example_PNG_2500kB-768x512.jpg ./file-examples/2017/10/file_example_GIF_1MB-300x200.gif ./file-examples/2017/10/file_example_JPG_1MB-768x512.jpg ./file-examples/2017/10/file-sample_150kB-pdf-212x300.jpg ./file-examples/2017/10/file_example_JPG_1MB-300x200.jpg ./file-examples/2017/10/file_example_PNG_2500kB-150x150.jpg ./file-examples/2017/10/file-sample_100kB.odt ./file-examples/2017/10/file_example_GIF_500kB-150x150.gif ./file-examples/2017/10/file-sample_150kB-pdf-106x150.jpg ./file-examples/2017/10/file_example_PNG_3MB.png ./file-examples/2017/10/file_example_JPG_500kB-300x200.jpg ./file-examples/2017/10/file_example_favicon.ico ./file-examples/2017/10/file_example_GIF_1MB-1024x683.gif ./file-examples/2017/10/file_example_GIF_500kB.gif ./file-examples/2017/10/file_example_PNG_2100kB-150x150.png ./file-examples/2017/10/file_example_GIF_3500kB-1024x683.gif ./file-examples/2017/10/file_example_ODS_5000.ods ./file-examples/2017/10/file_example_PNG_2100kB-300x200.png ./file-examples/2017/10/file_example_PNG_1MB-768x512.png ./file-examples/2017/10/file_example_ODS_1000.ods ./file-examples/2017/10/file_example_PNG_500kB.png ./file-examples/2017/10/file_example_PNG_1MB-150x150.png ./file-examples/2017/10/file_example_PNG_3MB-300x200.png ./file-examples/2017/10/file_example_PNG_2100kB.png ./file-examples/2017/10/file_example_GIF_500kB-1024x683.gif ./file-examples/2017/10/file-example_PDF_1MB-pdf.jpg ./file-examples/2017/10/file_example_GIF_1MB.gif ./file-examples/2017/10/file-example_PDF_1MB.pdf ./file-examples/2017/10/file_example_GIF_3500kB-150x150.gif ./file-examples/2017/10/file-example_PDF_1MB-pdf-106x150.jpg ./file-examples/2017/10/file_example_GIF_3500kB-768x512.gif ./file-examples/2017/10/file_example_PNG_1MB-300x200.png ./file-examples/2017/10/file_example_GIF_500kB-768x512.gif ./file-examples/2017/10/file-example_PDF_500_kB.pdf ./file-examples/2017/10/file_example_PNG_500kB-768x511.png ./file-examples/2017/10/file_example_GIF_3500kB-300x200.gif ./file-examples/2017/10/file_example_JPG_2500kB.jpg ./file-examples/2017/10/file_example_JPG_2500kB-1024x683.jpg ./file-examples/2017/10/file_example_JPG_2500kB-768x512.jpg ./file-examples/2017/10/file_example_PNG_500kB-300x200.png ./file-examples/2017/10/file_example_JPG_500kB-768x512.jpg ./file-examples/2017/10/file-sample_500kB.odt ./file-examples/2017/10/file_example_ODP_1MB.odp ./file-examples/2017/10/file_example_PNG_2500kB.jpg ./file-examples/2017/10/file_example_TIFF_1MB.tiff ./file-examples/2017/10/file_example_ODS_100.ods ./file-examples/2017/10/file_example_PNG_1MB.png ./file-examples/2017/10/file-sample_150kB-pdf-724x1024.jpg ./file-examples/2017/10/file-example_PDF_1MB-pdf-212x300.jpg ./file-examples/2017/10/file_example_ODP_500kB.odp ./file-examples/2017/10/file_example_JPG_100kB-1024x683.jpg ./file-examples/2017/10/file_example_PNG_500kB-150x150.png ./file-examples/2017/10/file_example_JPG_500kB-150x150.jpg ./file-examples/2017/10/410.svg ./file-examples/2017/10/file-example_PDF_500_kB-pdf-724x1024.jpg ./file-examples/2017/10/file_example_JPG_1MB.jpg ./file-examples/2017/10/file_example_GIF_3500kB.gif ./file-examples/2017/10/file_example_GIF_500kB-300x200.gif ./file-examples/2017/10/file_example_PNG_3MB-1024x683.png ./file-examples/2017/10/file_example_TIFF_10MB.tiff ./file-examples/2017/10/file_example_TIFF_5MB.tiff ./file-examples/2017/10/file_example_PNG_3MB-768x512.png ./file-examples/2017/10/file-example_PDF_1MB-pdf-724x1024.jpg ./file-examples/2017/10/file_example_JPG_500kB-1024x683.jpg ./file-examples/2017/10/file_example_JPG_500kB.jpg ./file-examples/2017/10/file_example_JPG_100kB-150x150.jpg ./file-examples/2017/10/file_example_ODP_200kB.odp ./file-examples/2017/10/file_example_JPG_100kB-300x200.jpg ./file-examples/2017/10/file_example_PNG_2500kB-300x200.jpg ./file-examples/2017/10/file-sample_150kB-pdf.jpg ./file-examples/2017/10/file_example_JPG_1MB-150x150.jpg ./file-examples/2017/10/file_example_GIF_1MB-150x150.gif ./file-examples/2017/10/file_example_JPG_2500kB-300x200.jpg 0.023171586588181834 0.0011861537599218536 0.022890105020000003 0.015030248181818182 0.008098665757575757 0.02174835052 0.03005855052
command mean stddev median user system min max parameter_F
file ./file-examples/2018/04/file_example_AVI_480_750kB.avi 0.0013278331341710305 0.00011380196438305183 0.00130158556 0.0011862238278068657 0.000149589005235602 0.00113754556 0.0022627375600000003 ./file-examples/2018/04/file_example_AVI_480_750kB.avi
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_AVI_480_750kB.avi 0.1818585588725 0.0074033199413978314 0.17963425155999999 1.091377195 1.3902588925000001 0.17056008856 0.19972820756 ./file-examples/2018/04/file_example_AVI_480_750kB.avi
file ./file-examples/2018/04/file_example_AVI_640_800kB.avi 0.0014563726178718093 0.00012388621223234932 0.00143651456 0.0012962476166770384 0.0001637785189794648 0.0012157145599999998 0.0022949335600000002 ./file-examples/2018/04/file_example_AVI_640_800kB.avi
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_AVI_640_800kB.avi 0.17902722499749998 0.006040977146724482 0.17833230505999997 1.0943398825 1.3649814550000001 0.16860064755999998 0.18928339956 ./file-examples/2018/04/file_example_AVI_640_800kB.avi
file ./file-examples/2018/04/file_example_OGG_1280_11_4mg.ogg 0.0014770713702345409 0.0001652712885773101 0.00144981456 0.0013013020042643895 0.0001830568727789624 0.00115826456 0.0025262015600000004 ./file-examples/2018/04/file_example_OGG_1280_11_4mg.ogg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_OGG_1280_11_4mg.ogg 0.17621463279529412 0.0074557260193515345 0.17307406356 1.0794355552941177 1.3787554623529412 0.16862740856 0.19607659556 ./file-examples/2018/04/file_example_OGG_1280_11_4mg.ogg
file ./file-examples/2018/04/file_example_WMV_480_1_2MB.wmv 0.0009347829718705049 0.0000988548572908667 0.0009178800599999999 0.0008629261151079142 0.00007685669064748198 0.0007802055599999999 0.0017204935599999997 ./file-examples/2018/04/file_example_WMV_480_1_2MB.wmv
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_WMV_480_1_2MB.wmv 0.17679483761882353 0.004510738127296568 0.17779138156 1.0739571435294115 1.3918054035294118 0.17073780455999998 0.18528868956 ./file-examples/2018/04/file_example_WMV_480_1_2MB.wmv
file ./file-examples/2018/04/file_example_MOV_1920_2_2MB.mov 0.0013584688431290124 0.00014084567960267485 0.00133159356 0.0012118471453590191 0.00014841446584938707 0.00109972456 0.0027755115600000004 ./file-examples/2018/04/file_example_MOV_1920_2_2MB.mov
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_MOV_1920_2_2MB.mov 0.17862215656 0.006337074666319403 0.18039151656 1.0781589866666665 1.39337558 0.16840062156 0.19100798356 ./file-examples/2018/04/file_example_MOV_1920_2_2MB.mov
file ./file-examples/2018/04/file_example_WMV_640_1_6MB.wmv 0.0009618751441860467 0.00011146844609823578 0.0009419395599999999 0.0008769170604651156 0.00008955490232558139 0.0007784455599999999 0.00171936356 ./file-examples/2018/04/file_example_WMV_640_1_6MB.wmv
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_WMV_640_1_6MB.wmv 0.18039109638352938 0.013440088517347784 0.17799639756 1.1151678494117647 1.3556641682352941 0.16981438356 0.23047494156 ./file-examples/2018/04/file_example_WMV_640_1_6MB.wmv
file ./file-examples/2018/04/file_example_AVI_1920_2_3MG.avi 0.0014671769639580915 0.00016244548838306884 0.00143608806 0.001285302933643773 0.00018658467986030252 0.00118519556 0.00259741356 ./file-examples/2018/04/file_example_AVI_1920_2_3MG.avi
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_AVI_1920_2_3MG.avi 0.17525417197176468 0.006518071822545052 0.17498707956 1.0399029670588236 1.401444697647059 0.16591101955999998 0.19159531056 ./file-examples/2018/04/file_example_AVI_1920_2_3MG.avi
file ./file-examples/2018/04/file_example_OGG_480_1_7mg.ogg 0.0013808820659782575 0.00012174160270638496 0.00135689906 0.0012277290652173915 0.00015985466304347835 0.0011578745599999999 0.0023502725600000004 ./file-examples/2018/04/file_example_OGG_480_1_7mg.ogg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_OGG_480_1_7mg.ogg 0.1774412849975 0.005261144836647929 0.17603047506 1.0757873199999999 1.3979089550000003 0.16900214656 0.18946547455999999 ./file-examples/2018/04/file_example_OGG_480_1_7mg.ogg
file ./file-examples/2018/04/file_example_MOV_1280_1_4MB.mov 0.00142241241570891 0.0002286302599198047 0.00137812456 0.001257153550815558 0.0001700089962358845 0.0010901355599999998 0.00489012156 ./file-examples/2018/04/file_example_MOV_1280_1_4MB.mov
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_MOV_1280_1_4MB.mov 0.1857333813725 0.008657105365979178 0.18435540006 1.0984400699999999 1.3971688299999998 0.17194234855999999 0.19947645756 ./file-examples/2018/04/file_example_MOV_1280_1_4MB.mov
file ./file-examples/2018/04/file_example_WMV_1920_9_3MB.wmv 0.0009579204463049093 0.00011623301024728416 0.0009336845599999999 0.0008749163824289388 0.00008622478552971578 0.0007649245599999999 0.0019459845600000001 ./file-examples/2018/04/file_example_WMV_1920_9_3MB.wmv
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_WMV_1920_9_3MB.wmv 0.1817556971225 0.008639834645591035 0.17944041356 1.0760955075 1.4025973925 0.17600561956 0.21310983856 ./file-examples/2018/04/file_example_WMV_1920_9_3MB.wmv
file ./file-examples/2018/04/file_example_OGG_640_2_7mg.ogg 0.0015189170156895639 0.0002757263053627494 0.0014784545599999999 0.0013370688201363413 0.000185551777661248 0.00117534456 0.006056299560000001 ./file-examples/2018/04/file_example_OGG_640_2_7mg.ogg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_OGG_640_2_7mg.ogg 0.1791808607475 0.004951005068473903 0.17802583255999999 1.0918396325 1.3760921425 0.17151797756 0.18930868356 ./file-examples/2018/04/file_example_OGG_640_2_7mg.ogg
file ./file-examples/2018/04/file_example_MOV_480_700kB.mov 0.0013424600868261153 0.0001502353707936631 0.0013247345599999999 0.0011945051066580504 0.00015080945054945054 0.00105780556 0.0024227225600000003 ./file-examples/2018/04/file_example_MOV_480_700kB.mov
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_MOV_480_700kB.mov 0.18140012708941172 0.007648008536634937 0.18294180756 1.086307555294118 1.3981458152941173 0.16874394656 0.19479537255999999 ./file-examples/2018/04/file_example_MOV_480_700kB.mov
file ./file-examples/2018/04/file_example_OGG_1920_13_3mg.ogg 0.001471841006473552 0.00018396285594082088 0.0014476180599999999 0.001299771511335014 0.0001775889168765744 0.00119179556 0.00382668256 ./file-examples/2018/04/file_example_OGG_1920_13_3mg.ogg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_OGG_1920_13_3mg.ogg 0.18093523767764705 0.010341105581683233 0.17924123756 1.0780141435294117 1.3949757564705882 0.16891045756 0.20546253456 ./file-examples/2018/04/file_example_OGG_1920_13_3mg.ogg
file ./file-examples/2018/04/file_example_MOV_640_800kB.mov 0.0013821744368790266 0.00013561057681813081 0.0013683255599999998 0.0012315509806728698 0.00015631329992841798 0.00109513456 0.00217489356 ./file-examples/2018/04/file_example_MOV_640_800kB.mov
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_MOV_640_800kB.mov 0.17433652197176472 0.006610122944020625 0.17125378756 1.0808953788235296 1.3761320505882353 0.16789672855999999 0.19019495056 ./file-examples/2018/04/file_example_MOV_640_800kB.mov
file ./file-examples/2018/04/file_example_WMV_1280_4_9MB.wmv 0.0009154115819990442 0.00010009061370015755 0.0008929645599999999 0.0008427960210425632 0.00007604964131994259 0.0007807455599999999 0.00224225356 ./file-examples/2018/04/file_example_WMV_1280_4_9MB.wmv
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_WMV_1280_4_9MB.wmv 0.1744685909717647 0.005933817872587778 0.17252489556 1.0470562611764704 1.4014007564705881 0.16522653156 0.18533761056 ./file-examples/2018/04/file_example_WMV_1280_4_9MB.wmv
file ./file-examples/2018/04/file_example_AVI_1280_1_5MG.avi 0.001400928490674846 0.00012383483065857387 0.00137909906 0.001251840662576687 0.00015473062576687113 0.0011640935599999999 0.0024916635600000002 ./file-examples/2018/04/file_example_AVI_1280_1_5MG.avi
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2018/04/file_example_AVI_1280_1_5MG.avi 0.17499916406000002 0.004678511032022265 0.17524091856000001 1.0571646325 1.3870025799999999 0.16821478556 0.18407000956 ./file-examples/2018/04/file_example_AVI_1280_1_5MG.avi
file ./file-examples/2019/09/file-sample_300kB.rtf 0.000916239496334699 0.00010753747934816236 0.0008959945599999999 0.0008468000727603448 0.00007292427467030464 0.0007594055599999998 0.0019332835599999998 ./file-examples/2019/09/file-sample_300kB.rtf
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2019/09/file-sample_300kB.rtf 0.17408617591294118 0.005752849988858294 0.17273175756 1.0646577905882353 1.4016264035294117 0.16699845956 0.18676273356 ./file-examples/2019/09/file-sample_300kB.rtf
file ./file-examples/2019/09/file-sample_1MB.rtf 0.0019381843257794652 0.00015708044546722244 0.0019065445599999997 0.0016687063117870721 0.0002731696425855515 0.00168963456 0.0035137415600000003 ./file-examples/2019/09/file-sample_1MB.rtf
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2019/09/file-sample_1MB.rtf 0.17514624050117641 0.006128526655652641 0.17391234056 1.0751773199999999 1.3849691094117649 0.16591927256 0.18824198056 ./file-examples/2019/09/file-sample_1MB.rtf
file ./file-examples/2019/09/file-sample_100kB.rtf 0.0007635993584293181 0.00009856036503572533 0.0007412850599999998 0.0007176481077038144 0.00005091338070306658 0.0006317645599999999 0.00151943456 ./file-examples/2019/09/file-sample_100kB.rtf
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2019/09/file-sample_100kB.rtf 0.17774134482666665 0.009656882514040448 0.17464897056 1.0907415866666668 1.3809011800000002 0.16764890756 0.20404471356 ./file-examples/2019/09/file-sample_100kB.rtf
file ./file-examples/2019/09/file-sample_500kB.rtf 0.0010575763472559115 0.00011260809143042538 0.0010345855599999997 0.000976235724563208 0.00008713549845837614 0.0008992445599999999 0.00216234756 ./file-examples/2019/09/file-sample_500kB.rtf
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2019/09/file-sample_500kB.rtf 0.17409904505999999 0.0027825239725125348 0.17500608105999998 1.06829157 1.3888206424999998 0.16832258955999999 0.17830754656 ./file-examples/2019/09/file-sample_500kB.rtf
file ./file-examples/2020/03/file_example_SVG_20kB.svg 0.0005202569148187166 0.00010593115310935852 0.0004938845599999999 0.000493324859002169 0.000029704109079640535 0.0004207255599999999 0.00217348456 ./file-examples/2020/03/file_example_SVG_20kB.svg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2020/03/file_example_SVG_20kB.svg 0.18558394432470587 0.009499612348351885 0.18253682656 1.1279042611764702 1.4063786976470585 0.17190041656 0.20101426656 ./file-examples/2020/03/file_example_SVG_20kB.svg
file ./file-examples/2020/03/file_example_WEBM_480_900KB.webm 0.0016627606274019619 0.0002916864048931307 0.00158620406 0.0014381815196078417 0.00021977207107843128 0.00121081556 0.0033803065600000004 ./file-examples/2020/03/file_example_WEBM_480_900KB.webm
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2020/03/file_example_WEBM_480_900KB.webm 0.19499049529333337 0.004629551854580367 0.19629946356 1.19348892 1.3653171133333333 0.18645168356 0.20170233856 ./file-examples/2020/03/file_example_WEBM_480_900KB.webm
file ./file-examples/2020/03/file_example_WEBM_1920_3_7MB.webm 0.0016192258623407018 0.00026349949763851383 0.00155381956 0.0014106431469440843 0.00020618780234070213 0.0012068255599999998 0.0031263725600000005 ./file-examples/2020/03/file_example_WEBM_1920_3_7MB.webm
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2020/03/file_example_WEBM_1920_3_7MB.webm 0.19175503709333333 0.009742155846953631 0.18872812256 1.13750772 1.3789448466666667 0.17863479556 0.21483001256 ./file-examples/2020/03/file_example_WEBM_1920_3_7MB.webm
file ./file-examples/2020/03/file_example_SVG_30kB.svg 0.0006187211534414647 0.00011317252858218476 0.0005934105599999999 0.0005861581523272203 0.000033781078984485186 0.0004509945599999999 0.0017438355600000002 ./file-examples/2020/03/file_example_SVG_30kB.svg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2020/03/file_example_SVG_30kB.svg 0.17644045350117646 0.008606502466995632 0.17601850856 1.0576451435294119 1.3961901094117644 0.16857445756 0.20511757056 ./file-examples/2020/03/file_example_SVG_30kB.svg
file ./file-examples/2020/03/file_example_WEBM_1280_3_6MB.webm 0.0012838451205882343 0.00012201421035012599 0.0012644425599999999 0.0011561664705882354 0.0001360769764705883 0.0010539555599999998 0.00216980856 ./file-examples/2020/03/file_example_WEBM_1280_3_6MB.webm
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2020/03/file_example_WEBM_1280_3_6MB.webm 0.19211435399750001 0.016973753938512217 0.18775114556 1.1508686325000002 1.3879082674999998 0.17506974356 0.23116145356 ./file-examples/2020/03/file_example_WEBM_1280_3_6MB.webm
file ./file-examples/2020/03/file_example_WEBM_640_1_4MB.webm 0.001347515406637338 0.000141848164694065 0.00132343456 0.0011975655562539295 0.000148425229415462 0.0010648045599999999 0.00232627456 ./file-examples/2020/03/file_example_WEBM_640_1_4MB.webm
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2020/03/file_example_WEBM_640_1_4MB.webm 0.17656452849333334 0.00754601703907434 0.17480856956 1.0926628533333336 1.36871298 0.16669871656 0.19395432756 ./file-examples/2020/03/file_example_WEBM_640_1_4MB.webm
file ./file-examples/2020/03/file_example_WEBP_50kB.webp 0.0007215913900701882 0.0000912090900760462 0.0007013445599999999 0.0006839513409678618 0.00004269964536387145 0.00061413556 0.00151188956 ./file-examples/2020/03/file_example_WEBP_50kB.webp
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2020/03/file_example_WEBP_50kB.webp 0.17402270273647058 0.0046746689294449575 0.17375450356 1.0267326729411765 1.419072462352941 0.16782391756 0.18421156756 ./file-examples/2020/03/file_example_WEBP_50kB.webp
file ./file-examples/2020/03/file_example_WEBP_500kB.webp 0.0010656803846753255 0.00011520228901467878 0.0010422900599999997 0.0009735185930735944 0.00009560133116883122 0.0008989555599999998 0.0019675305600000003 ./file-examples/2020/03/file_example_WEBP_500kB.webp
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2020/03/file_example_WEBP_500kB.webp 0.17594975993499998 0.005126983311014835 0.17473065606 1.0969786325 1.36864433 0.16716989356 0.18702855356 ./file-examples/2020/03/file_example_WEBP_500kB.webp
file ./file-examples/2020/03/file_example_WEBP_250kB.webp 0.0008886441904170089 0.00010703155914653096 0.0008646050599999999 0.0008304590024529831 0.00006204663123466887 0.0007521455599999998 0.00189033756 ./file-examples/2020/03/file_example_WEBP_250kB.webp
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2020/03/file_example_WEBP_250kB.webp 0.17428135456000002 0.0057830236450321605 0.17435556355999998 1.0763011949999999 1.3927508299999998 0.16581981256 0.18823175556 ./file-examples/2020/03/file_example_WEBP_250kB.webp
file ./file-examples/2020/03/file_example_WEBP_1500kB.webp 0.0017019644004327267 0.00017410595189844725 0.00166599256 0.00146917914807302 0.00023809825557809345 0.00138889356 0.0028794215600000004 ./file-examples/2020/03/file_example_WEBP_1500kB.webp
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2020/03/file_example_WEBP_1500kB.webp 0.1745837193247059 0.007303216202257352 0.17273937656 1.0780658494117648 1.3694276388235296 0.16516873956 0.19876041456 ./file-examples/2020/03/file_example_WEBP_1500kB.webp
file ./file-examples/2017/file-sample.doc 0.0004813654209032965 0.00007377351117165862 0.00046263555999999996 0.00045993292324743616 0.000027666672208367975 0.0003979445599999999 0.0013694735599999999 ./file-examples/2017/file-sample.doc
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/file-sample.doc 0.17387569530999994 0.004654938447988909 0.17316619156 1.0713793825 1.380035455 0.16751500955999998 0.18402531356 ./file-examples/2017/file-sample.doc
file ./file-examples/2017/02/zip_5MB.zip 0.0011139357030809395 0.0001824943089787704 0.00107610456 0.0010118568146214087 0.00010896092950391641 0.0009387955599999998 0.004275359560000001 ./file-examples/2017/02/zip_5MB.zip
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/zip_5MB.zip 0.17931722626588234 0.011482199975668973 0.17563500656 1.0558260847058822 1.414228344705882 0.17006950256 0.21067012856 ./file-examples/2017/02/zip_5MB.zip
file ./file-examples/2017/02/file_example_XLS_10.xls 0.0004729559061538461 0.00010795311372842674 0.00044693555999999996 0.00045176602825745696 0.000027318482469911053 0.0003438155599999999 0.0016288335599999998 ./file-examples/2017/02/file_example_XLS_10.xls
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file_example_XLS_10.xls 0.17811507438352941 0.004563534615046808 0.17942283456 1.0958087317647058 1.374351285882353 0.16847286556 0.18477075956 ./file-examples/2017/02/file_example_XLS_10.xls
file ./file-examples/2017/02/zip_9MB.zip 0.00111859556382096 0.00011598711987727765 0.0010985150599999998 0.0010235032314410482 0.00009764370087336243 0.00094314556 0.0021319575600000002 ./file-examples/2017/02/zip_9MB.zip
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/zip_9MB.zip 0.192380630435 0.023068157327987625 0.18395969756 1.1090955700000003 1.4057095175 0.16732717855999998 0.24301771256 ./file-examples/2017/02/zip_9MB.zip
file ./file-examples/2017/02/file_example_XLSX_10.xlsx 0.0006298437866540045 0.00010553327756208515 0.0006102455599999999 0.0005985032985121884 0.000034465653687875927 0.0004878345599999999 0.00154589556 ./file-examples/2017/02/file_example_XLSX_10.xlsx
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file_example_XLSX_10.xlsx 0.182565954435 0.0058295638884536555 0.18078269955999998 1.071939945 1.4041709549999999 0.17580910956 0.19736707556 ./file-examples/2017/02/file_example_XLSX_10.xlsx
file ./file-examples/2017/02/file-sample_500kB.docx 0.0008904663441693504 0.00011421694819145032 0.0008679755599999999 0.000830995729406351 0.00006407537045559135 0.00072131456 0.0017830035599999997 ./file-examples/2017/02/file-sample_500kB.docx
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file-sample_500kB.docx 0.17753872555999997 0.007877167213436427 0.17440239956 1.0815112611764708 1.3895634035294118 0.17040042356 0.20178072756 ./file-examples/2017/02/file-sample_500kB.docx
file ./file-examples/2017/02/file-sample.doc 0.0004838842880858686 0.00007407372307528761 0.0004645050599999999 0.0004630507811568263 0.00002616980322003578 0.0004018165599999999 0.00113372656 ./file-examples/2017/02/file-sample.doc
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file-sample.doc 0.18423699867764706 0.008048885984404543 0.18535532556 1.1442137905882355 1.3649828741176468 0.17225824756 0.20029852056 ./file-examples/2017/02/file-sample.doc
file ./file-examples/2017/02/file_example_XLS_5000.xls 0.0008007168341732947 0.00013027196658300464 0.0007686355599999999 0.0007441058350774374 0.00005931033068229382 0.0006475155599999999 0.00208042356 ./file-examples/2017/02/file_example_XLS_5000.xls
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file_example_XLS_5000.xls 0.17708232249749997 0.006595036396691598 0.17608477606 1.1023724449999999 1.3626490175 0.16809821655999999 0.19515613456 ./file-examples/2017/02/file_example_XLS_5000.xls
file ./file-examples/2017/02/file-sample_1MB.doc 0.0009465873660182685 0.00013308226629651134 0.0009133955599999999 0.0008682499731327249 0.0000823576141859215 0.0007856855599999999 0.00181260356 ./file-examples/2017/02/file-sample_1MB.doc
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file-sample_1MB.doc 0.18479255508941175 0.007711859368543847 0.18279526656 1.1431429670588233 1.3628589329411764 0.17425206156 0.20084436856 ./file-examples/2017/02/file-sample_1MB.doc
file ./file-examples/2017/02/file_example_XLSX_50.xlsx 0.0005973906437728822 0.00009057819043030851 0.0005842755599999999 0.000570357033819423 0.00003210929568724789 0.00048368555999999996 0.00142315456 ./file-examples/2017/02/file_example_XLSX_50.xlsx
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file_example_XLSX_50.xlsx 0.17793436431000004 0.007355037414210359 0.17703462406 1.083506195 1.3771231425000001 0.16670223956 0.19255729656 ./file-examples/2017/02/file_example_XLSX_50.xlsx
file ./file-examples/2017/02/file_example_XLS_50.xls 0.000460427704230768 0.00007335724267628392 0.0004478715599999999 0.0004410947668997675 0.00002584411421911423 0.00036058555999999995 0.00137893956 ./file-examples/2017/02/file_example_XLS_50.xls
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file_example_XLS_50.xls 0.1794725031225 0.007051184604827382 0.17819073206 1.0975483825 1.3845907050000001 0.17045209656 0.19348892056 ./file-examples/2017/02/file_example_XLS_50.xls
file ./file-examples/2017/02/file_example_XLSX_5000.xlsx 0.0007275859443898866 0.00013806575303473712 0.0006964745599999998 0.0006850432246244081 0.000046646471234884556 0.00057474456 0.0022549185600000002 ./file-examples/2017/02/file_example_XLSX_5000.xlsx
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file_example_XLSX_5000.xlsx 0.17163129208941177 0.00267611962882368 0.17215127756 1.062465202352941 1.3871900505882353 0.16652788256 0.17762098156 ./file-examples/2017/02/file_example_XLSX_5000.xlsx
file ./file-examples/2017/02/file_example_CSV_5000.csv 0.0006502889173200978 0.00008492700885017399 0.0006268645599999999 0.0006116234384969865 0.000043856327543424324 0.0005512755599999999 0.0013814045599999999 ./file-examples/2017/02/file_example_CSV_5000.csv
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file_example_CSV_5000.csv 0.17426786693499996 0.005909830450110966 0.17269208955999998 1.0788756325 1.3827720800000003 0.16614517456 0.18559881556 ./file-examples/2017/02/file_example_CSV_5000.csv
file ./file-examples/2017/02/file-sample_100kB.doc 0.0004799486166037741 0.00006955488980429157 0.0004614755599999999 0.0004628822962665588 0.000024297021276595748 0.00039459555999999996 0.00111884556 ./file-examples/2017/02/file-sample_100kB.doc
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file-sample_100kB.doc 0.17520004256000002 0.010211345767580675 0.17258938656 1.0402371435294118 1.4253769329411765 0.16590042356 0.21024467856 ./file-examples/2017/02/file-sample_100kB.doc
file ./file-examples/2017/02/zip_10MB.zip 0.0010998735505707207 0.00010844931158738143 0.00107681556 0.0010097319106699763 0.00009674580645161283 0.00094522556 0.0018440535600000002 ./file-examples/2017/02/zip_10MB.zip
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/zip_10MB.zip 0.1780371817364706 0.017173077197156782 0.17185305656 1.0819694964705884 1.391533403529412 0.16657051956 0.23169770256 ./file-examples/2017/02/zip_10MB.zip
file ./file-examples/2017/02/file_example_XLS_100.xls 0.0005150687668679035 0.00015504010301799692 0.0004696265599999999 0.0004917774134588755 0.000027146629742453602 0.0003400555599999999 0.0016320445599999997 ./file-examples/2017/02/file_example_XLS_100.xls
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file_example_XLS_100.xls 0.18162814949749995 0.005021353869294768 0.18162552906 1.0684251949999999 1.4148806425 0.17019566456 0.19246124256 ./file-examples/2017/02/file_example_XLS_100.xls
file ./file-examples/2017/02/file_example_JSON_1kb.json 0.0004721527624539888 0.00007481487934319993 0.00045642455999999996 0.00045227997662868817 0.000026127665790242503 0.00036965555999999986 0.00109532656 ./file-examples/2017/02/file_example_JSON_1kb.json
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file_example_JSON_1kb.json 0.18784766380999998 0.0063992692693916895 0.18577956806 1.1252107574999999 1.3856958299999997 0.17932963556 0.19893684156 ./file-examples/2017/02/file_example_JSON_1kb.json
file ./file-examples/2017/02/zip_2MB.zip 0.0011922219129769113 0.00012684898928605934 0.00117614506 0.0010854955771567446 0.00011170252733900368 0.0009560155599999999 0.00206029456 ./file-examples/2017/02/zip_2MB.zip
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/zip_2MB.zip 0.18065640137250003 0.004868375340693524 0.18071903556000002 1.0888592574999998 1.3922499549999996 0.17425062856 0.19126208156 ./file-examples/2017/02/zip_2MB.zip
file ./file-examples/2017/02/file_example_XLS_1000.xls 0.0005285902857712684 0.00007977407169272089 0.0005126455599999999 0.0005010233468370213 0.00003038090370832037 0.00042497555999999995 0.0011883835599999998 ./file-examples/2017/02/file_example_XLS_1000.xls
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file_example_XLS_1000.xls 0.17871961731 0.004960707546401304 0.17753796255999998 1.091061195 1.3733052050000003 0.17211234256 0.18911892455999998 ./file-examples/2017/02/file_example_XLS_1000.xls
file ./file-examples/2017/02/file-sample_1MB.docx 0.001101362123624251 0.00012895124286093861 0.0010769645599999998 0.0009995078747501674 0.0001080688474350433 0.00091114456 0.0021875925600000003 ./file-examples/2017/02/file-sample_1MB.docx
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file-sample_1MB.docx 0.18592571662250001 0.008402151512211338 0.18596908756 1.109408945 1.3860854550000001 0.17544195856 0.20835047956 ./file-examples/2017/02/file-sample_1MB.docx
file ./file-examples/2017/02/file-sample_100kB.docx 0.0006992449724159741 0.00012878579722089845 0.0006770565599999998 0.0006655538315539748 0.00003893630684064848 0.0005504655599999999 0.00200793256 ./file-examples/2017/02/file-sample_100kB.docx
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file-sample_100kB.docx 0.18252244069333332 0.007057225586669819 0.18094888356 1.135764386666667 1.3522095133333332 0.17170208556 0.19753089256 ./file-examples/2017/02/file-sample_100kB.docx
file ./file-examples/2017/02/file_example_XLSX_100.xlsx 0.0006220861739773156 0.00008978222160586025 0.0006084855599999999 0.0005935397877789978 0.00003390202707647275 0.0004995355599999999 0.0014155535599999999 ./file-examples/2017/02/file_example_XLSX_100.xlsx
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file_example_XLSX_100.xlsx 0.18205578502666667 0.005886076577833864 0.18070346756 1.0863613866666666 1.3958137133333335 0.17287843756 0.19207286156 ./file-examples/2017/02/file_example_XLSX_100.xlsx
file ./file-examples/2017/02/file_example_XML_24kb.xml 0.0011400673334139003 0.00013339769009963176 0.00111981456 0.0010662011681772405 0.00007582713997985902 0.00093431556 0.0021211055600000002 ./file-examples/2017/02/file_example_XML_24kb.xml
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file_example_XML_24kb.xml 0.17254484209333334 0.005087639203683819 0.17149408956 1.03778332 1.3976681133333335 0.16688685456 0.18808147756 ./file-examples/2017/02/file_example_XML_24kb.xml
file ./file-examples/2017/02/index.html 0.0016098060673206424 0.0001624339942814292 0.00157096556 0.0014779100439238665 0.00013817773060029274 0.0014126435599999998 0.0029784715600000003 ./file-examples/2017/02/index.html
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/index.html 0.17336636797176466 0.004898391248990146 0.17470847156 1.0827525552941175 1.3646225211764706 0.16573558856 0.18424101456 ./file-examples/2017/02/index.html
file ./file-examples/2017/02/file-sample_500kB.doc 0.0006541904961617765 0.00008236573162234246 0.0006303455599999999 0.0006155988897700244 0.000043871173671689166 0.0005614255599999999 0.00151756056 ./file-examples/2017/02/file-sample_500kB.doc
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file-sample_500kB.doc 0.17376556344235294 0.005157931616901172 0.17251396355999998 1.0771912023529409 1.3792078741176468 0.16661447356 0.18155361456 ./file-examples/2017/02/file-sample_500kB.doc
file ./file-examples/2017/02/file_example_XLSX_1000.xlsx 0.0005913018056676857 0.00007928993050997801 0.00056644556 0.0005665604621134878 0.00003097856608902482 0.00050474556 0.0013580745599999998 ./file-examples/2017/02/file_example_XLSX_1000.xlsx
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/02/file_example_XLSX_1000.xlsx 0.17580911822666664 0.006725614244477503 0.17398420256 1.1203122533333334 1.3742385133333335 0.16551310855999998 0.19149888156 ./file-examples/2017/02/file_example_XLSX_1000.xlsx
file ./file-examples/2017/11/file_example_WAV_2MG.wav 0.0014379426359819726 0.00012996249418351487 0.0014113045599999999 0.0012698145267224705 0.0001743799613650999 0.00120529356 0.0024748215600000002 ./file-examples/2017/11/file_example_WAV_2MG.wav
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/11/file_example_WAV_2MG.wav 0.18266439775999999 0.004977246930070507 0.18165561756 1.11966172 1.36905838 0.17526143956 0.19411333856 ./file-examples/2017/11/file_example_WAV_2MG.wav
file ./file-examples/2017/11/file_example_WAV_10MG.wav 0.0015527183534301936 0.00014647848621101233 0.0015296145599999998 0.0013672496778269103 0.00018969600758054328 0.0012397555599999999 0.00242952456 ./file-examples/2017/11/file_example_WAV_10MG.wav
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/11/file_example_WAV_10MG.wav 0.179767080685 0.003456751892424523 0.17944251456 1.0846818825000002 1.390863705 0.17431858856 0.18790013056 ./file-examples/2017/11/file_example_WAV_10MG.wav
file ./file-examples/2017/11/file_example_MP3_5MG.mp3 0.0016000234066850842 0.00015880394153859042 0.00157851956 0.0014136003867403321 0.0001895726657458563 0.00126686556 0.0025317675600000002 ./file-examples/2017/11/file_example_MP3_5MG.mp3
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/11/file_example_MP3_5MG.mp3 0.1887541706933334 0.01548297551105469 0.18746319356 1.1225642533333333 1.3865077133333332 0.17259426056 0.23656295156 ./file-examples/2017/11/file_example_MP3_5MG.mp3
file ./file-examples/2017/11/file_example_MP3_700KB.mp3 0.0015187283405502228 0.00014209953730621368 0.0015071615599999998 0.0013583338707613562 0.0001667589763275751 0.0012368145599999999 0.00245568256 ./file-examples/2017/11/file_example_MP3_700KB.mp3
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/11/file_example_MP3_700KB.mp3 0.18073666403058822 0.00784320529899136 0.17866122256 1.0949642611764705 1.3890626976470588 0.17275569456 0.20066763456 ./file-examples/2017/11/file_example_MP3_700KB.mp3
file ./file-examples/2017/11/file_example_WAV_5MG.wav 0.0015914747348798092 0.00016606792879916366 0.00156330456 0.0013993825000000013 0.00019662009615384622 0.00123742456 0.00298015856 ./file-examples/2017/11/file_example_WAV_5MG.wav
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/11/file_example_WAV_5MG.wav 0.1755594062266667 0.008381767009207909 0.17376047656 1.0920070533333335 1.3625647133333334 0.16569942956 0.19396185656 ./file-examples/2017/11/file_example_WAV_5MG.wav
file ./file-examples/2017/11/file_example_MP3_2MG.mp3 0.0014891362647146379 0.00014611743573633175 0.00146233506 0.0013259854342431762 0.00017041346153846148 0.00123873456 0.0025976125600000004 ./file-examples/2017/11/file_example_MP3_2MG.mp3
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/11/file_example_MP3_2MG.mp3 0.17876895618500002 0.005157043114023406 0.17788913606 1.0299598825 1.4341538925 0.17091600556 0.18934637856 ./file-examples/2017/11/file_example_MP3_2MG.mp3
file ./file-examples/2017/11/file_example_OOG_5MG.ogg 0.001430317712450091 0.00015790009504848884 0.00140321456 0.0012705079491833015 0.00016615479733817303 0.00117943456 0.0025768125600000003 ./file-examples/2017/11/file_example_OOG_5MG.ogg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/11/file_example_OOG_5MG.ogg 0.18466655932470588 0.010354232746982765 0.18167100156 1.1181722611764706 1.3944029329411765 0.17283399256 0.21606404856 ./file-examples/2017/11/file_example_OOG_5MG.ogg
file ./file-examples/2017/11/file_example_OOG_2MG.ogg 0.0016585228508277385 0.00013747505578752282 0.0016308935599999997 0.0014294587024608514 0.00023162884414615963 0.0013829955599999999 0.00250460356 ./file-examples/2017/11/file_example_OOG_2MG.ogg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/11/file_example_OOG_2MG.ogg 0.1805038650305882 0.009365984155882794 0.17759385955999998 1.1052367905882352 1.3841066976470588 0.17000506556 0.20312662456 ./file-examples/2017/11/file_example_OOG_2MG.ogg
file ./file-examples/2017/11/file_example_MP3_1MG.mp3 0.0015477304113761432 0.00017357632858810724 0.00152576356 0.0013736327584097869 0.00017835137614678894 0.0012224645599999999 0.00269361356 ./file-examples/2017/11/file_example_MP3_1MG.mp3
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/11/file_example_MP3_1MG.mp3 0.17406400408941172 0.004331693272016557 0.17421014056 1.0848885552941177 1.3722776976470588 0.16809565756 0.18305244156 ./file-examples/2017/11/file_example_MP3_1MG.mp3
file ./file-examples/2017/11/file_example_WAV_1MG.wav 0.0014700141321125088 0.0001326504613404227 0.00145290556 0.0012964478755236397 0.0001797894075403949 0.0012043245599999998 0.0024942325600000002 ./file-examples/2017/11/file_example_WAV_1MG.wav
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/11/file_example_WAV_1MG.wav 0.17585220608941182 0.0039951877421801965 0.17569736855999998 1.075340908235294 1.3849729329411764 0.16875586056 0.18319151256 ./file-examples/2017/11/file_example_WAV_1MG.wav
file ./file-examples/2017/11/file_example_OOG_1MG.ogg 0.001691637132368419 0.0001267356297793464 0.0016825895599999999 0.0014572892982456132 0.00023136470760233904 0.0014051255599999998 0.00242455556 ./file-examples/2017/11/file_example_OOG_1MG.ogg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/11/file_example_OOG_1MG.ogg 0.17807999062250002 0.00784952779417022 0.17788791605999998 1.1044720700000001 1.3761908924999997 0.16860266756 0.19962590356 ./file-examples/2017/11/file_example_OOG_1MG.ogg
file ./file-examples/2017/04/file_example_MP4_1280_10MG.mp4 0.0013537954001775804 0.00014392344418687298 0.0013304645599999999 0.0011997190011098812 0.00015960169811320748 0.00108150456 0.0025715055600000003 ./file-examples/2017/04/file_example_MP4_1280_10MG.mp4
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/04/file_example_MP4_1280_10MG.mp4 0.18095714156 0.014149183545024079 0.17585244056 1.1144435552941176 1.3661465211764705 0.17169547656 0.22580489856 ./file-examples/2017/04/file_example_MP4_1280_10MG.mp4
file ./file-examples/2017/04/SampleVideo_1280x720_1mb.mp4 0.0013101574817171722 0.0001317734598462734 0.0012845850599999997 0.0011657088888888908 0.00015112171717171721 0.00106908556 0.00206656556 ./file-examples/2017/04/SampleVideo_1280x720_1mb.mp4
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/04/SampleVideo_1280x720_1mb.mp4 0.17251356761882353 0.003557548952816451 0.17217967656 1.0441849082352939 1.4089906976470588 0.16816666255999999 0.17970906956 ./file-examples/2017/04/SampleVideo_1280x720_1mb.mp4
file ./file-examples/2017/04/file_example_MP4_480_1_5MG.mp4 0.0013403405717107926 0.00024279868764974077 0.0012880545599999998 0.0011891748879837103 0.00015791663951120167 0.00107172456 0.00424566156 ./file-examples/2017/04/file_example_MP4_480_1_5MG.mp4
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/04/file_example_MP4_480_1_5MG.mp4 0.17435655450117646 0.00922392030414621 0.17319455056 1.1114574376470587 1.3498306976470587 0.16632945156 0.20661164756 ./file-examples/2017/04/file_example_MP4_480_1_5MG.mp4
file ./file-examples/2017/04/file_example_MP4_640_3MG.mp4 0.001316214533435653 0.00012454957194926096 0.0012925745599999998 0.001162630507674143 0.00015788521841794565 0.00109404456 0.0022536545600000003 ./file-examples/2017/04/file_example_MP4_640_3MG.mp4
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/04/file_example_MP4_640_3MG.mp4 0.175547614435 0.005651556331248726 0.17534435456 1.0232106325 1.4379831424999998 0.16728679156 0.18729371656 ./file-examples/2017/04/file_example_MP4_640_3MG.mp4
file ./file-examples/2017/04/file_example_MP4_1920_18MG.mp4 0.001318856803194189 0.00014513619701750336 0.00129222456 0.001186221996370237 0.0001365329098608591 0.0010855145599999998 0.00236526356 ./file-examples/2017/04/file_example_MP4_1920_18MG.mp4
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/04/file_example_MP4_1920_18MG.mp4 0.17332041874749995 0.004612791580297873 0.17234102106 1.0769031325000002 1.387750955 0.16890614956 0.18615237956 ./file-examples/2017/04/file_example_MP4_1920_18MG.mp4
file ./file-examples/2017/08/file_example_PPT_500kB.ppt 0.0006743592742262896 0.00008759996756964787 0.0006521100599999999 0.0006355332612312819 0.00004693234608985023 0.0005684255599999999 0.0014678085599999998 ./file-examples/2017/08/file_example_PPT_500kB.ppt
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/08/file_example_PPT_500kB.ppt 0.17508349714823532 0.0045869342163102666 0.17521081556 1.0524564964705885 1.4128246388235293 0.16888484456 0.18309326856 ./file-examples/2017/08/file_example_PPT_500kB.ppt
file ./file-examples/2017/08/file_example_PPT_250kB.ppt 0.0005667501358962621 0.00008674306253880258 0.0005488755599999999 0.0005397017848970249 0.00003336499618611746 0.0004583955599999999 0.0012795415599999999 ./file-examples/2017/08/file_example_PPT_250kB.ppt
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/08/file_example_PPT_250kB.ppt 0.17763253050117647 0.005298539499391061 0.17607237156 1.075392908235294 1.3857671094117645 0.17100913756 0.18668894056 ./file-examples/2017/08/file_example_PPT_250kB.ppt
file ./file-examples/2017/08/file_example_PPT_1MB.ppt 0.000927837829643622 0.00010540909088413165 0.0009046455599999999 0.0008524782996994428 0.00007779163589523401 0.0007688655599999998 0.0017364915599999999 ./file-examples/2017/08/file_example_PPT_1MB.ppt
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/08/file_example_PPT_1MB.ppt 0.17773169555999999 0.009633757304722998 0.17521415206 1.1071281325 1.3786647675 0.16686619156 0.20467740756 ./file-examples/2017/08/file_example_PPT_1MB.ppt
file ./file-examples/2017/10/file_example_JPG_100kB.jpg 0.0006435479693585388 0.00016137754244271996 0.0005948655599999999 0.0006066115153393251 0.00003881549426712118 0.00048885556 0.0022525825600000003 ./file-examples/2017/10/file_example_JPG_100kB.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_100kB.jpg 0.17614743168500002 0.003692000992063316 0.17642864555999999 1.04162232 1.423414205 0.16952842556 0.18103985856 ./file-examples/2017/10/file_example_JPG_100kB.jpg
file ./file-examples/2017/10/file_example_PNG_3MB-150x150.png 0.0005251848366085393 0.0000962270031301181 0.0005049345599999999 0.0004990130366806963 0.00003061969933854482 0.00039618555999999995 0.00147548356 ./file-examples/2017/10/file_example_PNG_3MB-150x150.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_3MB-150x150.png 0.1826968859975 0.006450638969992424 0.18333349006 1.0758137575 1.4130382049999999 0.17216233956 0.19761933856 ./file-examples/2017/10/file_example_PNG_3MB-150x150.png
file ./file-examples/2017/10/file-sample_1MB.odt 0.0010934666686637261 0.00011717382299086163 0.00107201456 0.000986170553108174 0.00010951824767498781 0.0009154345599999998 0.0020583655600000003 ./file-examples/2017/10/file-sample_1MB.odt
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-sample_1MB.odt 0.17522237320705883 0.004030233560188946 0.17640332856 1.093686143529412 1.3725826976470588 0.16840372656 0.18161108356 ./file-examples/2017/10/file-sample_1MB.odt
file ./file-examples/2017/10/file_example_PNG_2500kB-1024x683.jpg 0.0005710592141609824 0.00007235074415346623 0.0005565300599999998 0.0005452904502046388 0.00003380548431105047 0.00047994555999999994 0.0012243695599999998 ./file-examples/2017/10/file_example_PNG_2500kB-1024x683.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_2500kB-1024x683.jpg 0.1746533157952941 0.006522219396772443 0.17275989056 1.049567614117647 1.4177084035294114 0.16609355956 0.19083147756 ./file-examples/2017/10/file_example_PNG_2500kB-1024x683.jpg
file ./file-examples/2017/10/file-example_PDF_500_kB-pdf-106x150.jpg 0.0005557996242740616 0.00008325003300788582 0.00054223556 0.0005305800456769991 0.000029931549755301787 0.00042110555999999995 0.00150339956 ./file-examples/2017/10/file-example_PDF_500_kB-pdf-106x150.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-example_PDF_500_kB-pdf-106x150.jpg 0.17736353522666667 0.006660349926542842 0.17599221856 1.0585048533333334 1.39444118 0.16853871056 0.19010470956 ./file-examples/2017/10/file-example_PDF_500_kB-pdf-106x150.jpg
file ./file-examples/2017/10/file_example_PNG_1MB-1024x682.png 0.0008213930082622441 0.0001053072794337153 0.0008045450599999999 0.0007653496208530816 0.00006142463665086889 0.00067142556 0.0019469435599999997 ./file-examples/2017/10/file_example_PNG_1MB-1024x682.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_1MB-1024x682.png 0.17584876520705883 0.004014926738051582 0.17583551256 1.0426766729411765 1.4225263447058822 0.16847438956 0.18262308156 ./file-examples/2017/10/file_example_PNG_1MB-1024x682.png
file ./file-examples/2017/10/file-example_PDF_500_kB-pdf-212x300.jpg 0.0005955106246682388 0.00011708324698558082 0.0005668755599999998 0.0005671216167059612 0.000031599804648029623 0.00045053555999999994 0.0017581075599999998 ./file-examples/2017/10/file-example_PDF_500_kB-pdf-212x300.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-example_PDF_500_kB-pdf-212x300.jpg 0.18029517467764705 0.010017330303741086 0.17967837456 1.066318555294118 1.4099849329411764 0.16671574556 0.21321887556 ./file-examples/2017/10/file-example_PDF_500_kB-pdf-212x300.jpg
file ./file-examples/2017/10/file_example_PNG_2100kB-1024x683.png 0.0008005334975785503 0.00011548789622363754 0.0007756945599999999 0.0007504440050272311 0.000056649241726015946 0.0006662455599999999 0.00196748156 ./file-examples/2017/10/file_example_PNG_2100kB-1024x683.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_2100kB-1024x683.png 0.1745626597475 0.006358900637940138 0.17261850406 1.0521061325000003 1.39657658 0.16652949256 0.18820909455999998 ./file-examples/2017/10/file_example_PNG_2100kB-1024x683.png
file ./file-examples/2017/10/file_example_JPG_100kB-768x512.jpg 0.0005504913283434801 0.00009911356241756464 0.0005252855599999998 0.0005244999679589866 0.000029624203780839462 0.0004564745599999999 0.0024091235600000004 ./file-examples/2017/10/file_example_JPG_100kB-768x512.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_100kB-768x512.jpg 0.17485346403058818 0.004699644947618121 0.17346177456 1.0744007905882351 1.371891403529412 0.16813691856 0.18516321956 ./file-examples/2017/10/file_example_JPG_100kB-768x512.jpg
file ./file-examples/2017/10/file_example_JPG_1MB-1024x683.jpg 0.0005746291028478327 0.00009860687961514323 0.0005480355599999998 0.0005479688628217664 0.000029631710654936463 0.0004762255599999999 0.00189142256 ./file-examples/2017/10/file_example_JPG_1MB-1024x683.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_1MB-1024x683.jpg 0.19927597893500004 0.0189968348380092 0.19077147606 1.2017807575 1.3501683299999998 0.17960554556 0.24211750156 ./file-examples/2017/10/file_example_JPG_1MB-1024x683.jpg
file ./file-examples/2017/10/file_example_PNG_2100kB-768x512.png 0.0007121527220487001 0.00010708014710426995 0.0006927800599999998 0.000668226246851386 0.000048174130982367764 0.00056658556 0.0017580515599999998 ./file-examples/2017/10/file_example_PNG_2100kB-768x512.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_2100kB-768x512.png 0.18711100918499995 0.010053479050683555 0.18576484506000002 1.1504021325 1.3649942675 0.17167670256 0.21417417455999999 ./file-examples/2017/10/file_example_PNG_2100kB-768x512.png
file ./file-examples/2017/10/file-sample_150kB.pdf 0.0006637780344987686 0.00010252497476875508 0.0006439075599999999 0.0006292199929651776 0.00003687224059092509 0.00051667556 0.0014903965599999999 ./file-examples/2017/10/file-sample_150kB.pdf
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-sample_150kB.pdf 0.18275058689333334 0.008676285915800134 0.17855948656 1.1394579200000003 1.35277258 0.17451385156 0.20199886756 ./file-examples/2017/10/file-sample_150kB.pdf
file ./file-examples/2017/10/file_example_ODS_10.ods 0.0006160624276355051 0.00010363299250405123 0.0005965900599999998 0.0005856005813040075 0.00003325057344854675 0.0004997255599999998 0.00175131456 ./file-examples/2017/10/file_example_ODS_10.ods
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_ODS_10.ods 0.182860749435 0.009005901426052065 0.18208153655999998 1.0949630700000001 1.3860497674999996 0.16934759756 0.20214207956 ./file-examples/2017/10/file_example_ODS_10.ods
file ./file-examples/2017/10/file-example_PDF_500_kB-pdf.jpg 0.0006702172394646006 0.0001430268031944013 0.0006324335599999999 0.0006348791264529761 0.00003899618175413877 0.0005228745599999999 0.00231894656 ./file-examples/2017/10/file-example_PDF_500_kB-pdf.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-example_PDF_500_kB-pdf.jpg 0.18055855387249997 0.005984253395738638 0.17868628106 1.0652715074999999 1.407726705 0.17374314256 0.19320101956 ./file-examples/2017/10/file-example_PDF_500_kB-pdf.jpg
file ./file-examples/2017/10/file_example_GIF_1MB-768x512.gif 0.0005810946382462063 0.00008831040691764543 0.0005641955599999999 0.0005526660370994945 0.00003098076897133221 0.00045896555999999997 0.00153831256 ./file-examples/2017/10/file_example_GIF_1MB-768x512.gif
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_GIF_1MB-768x512.gif 0.178039835935 0.004264415477828757 0.17775396606 1.1269466325 1.330289205 0.17327493856 0.18911893356 ./file-examples/2017/10/file_example_GIF_1MB-768x512.gif
file ./file-examples/2017/10/file_example_JPG_2500kB-150x150.jpg 0.0005655002615395368 0.00008568077725273198 0.00055055056 0.0005396392442267328 0.00003054230930720786 0.0004444245599999999 0.00130441656 ./file-examples/2017/10/file_example_JPG_2500kB-150x150.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_2500kB-150x150.jpg 0.18549744338352944 0.008383017087190844 0.18541619956 1.1315427317647058 1.3898451682352941 0.17305015856 0.20648737756 ./file-examples/2017/10/file_example_JPG_2500kB-150x150.jpg
file ./file-examples/2017/10/file_example_PNG_2500kB-768x512.jpg 0.0005752816476847295 0.00009528882602373054 0.00055691556 0.0005445956781609188 0.00003342753366174057 0.00046645555999999994 0.00161661256 ./file-examples/2017/10/file_example_PNG_2500kB-768x512.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_2500kB-768x512.jpg 0.1807451221482353 0.006288443444661593 0.17985836355999998 1.0805560847058824 1.3970022270588236 0.17215972456 0.19339922756 ./file-examples/2017/10/file_example_PNG_2500kB-768x512.jpg
file ./file-examples/2017/10/file_example_GIF_1MB-300x200.gif 0.0005126962662518695 0.00008812431194527144 0.0004977955599999998 0.0004878874543822915 0.000030192126832186655 0.00038857555999999993 0.0011623455599999999 ./file-examples/2017/10/file_example_GIF_1MB-300x200.gif
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_GIF_1MB-300x200.gif 0.18786984712250002 0.00949339863682495 0.18458684756 1.1052916325 1.3995381425000002 0.17398384156 0.20616175856 ./file-examples/2017/10/file_example_GIF_1MB-300x200.gif
file ./file-examples/2017/10/file_example_JPG_1MB-768x512.jpg 0.0005869813239375595 0.00011707282675565487 0.0005607055599999998 0.0005621979866199405 0.000031275845810767746 0.0004569155599999999 0.0017320945600000001 ./file-examples/2017/10/file_example_JPG_1MB-768x512.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_1MB-768x512.jpg 0.18173829693500004 0.007107684409922722 0.18150704305999998 1.1036798824999998 1.38031308 0.16977989956 0.19846551056 ./file-examples/2017/10/file_example_JPG_1MB-768x512.jpg
file ./file-examples/2017/10/file-sample_150kB-pdf-212x300.jpg 0.0005701222616309565 0.00008491104885368394 0.0005552605599999998 0.0005415819123760784 0.000032118106811640546 0.00045310555999999996 0.00148684356 ./file-examples/2017/10/file-sample_150kB-pdf-212x300.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-sample_150kB-pdf-212x300.jpg 0.17976398867764706 0.003666901200361809 0.17862710456 1.0853657905882357 1.387507462352941 0.17440596955999998 0.18660684555999998 ./file-examples/2017/10/file-sample_150kB-pdf-212x300.jpg
file ./file-examples/2017/10/file_example_JPG_1MB-300x200.jpg 0.0005760387264536731 0.00008998815375850814 0.00055925406 0.0005439968945686901 0.00003238705431309903 0.00045878555999999995 0.0013538465599999998 ./file-examples/2017/10/file_example_JPG_1MB-300x200.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_1MB-300x200.jpg 0.17751663503058826 0.0037158056954997676 0.17791262256 1.0975349670588235 1.3749244623529413 0.17247478556 0.18618144456 ./file-examples/2017/10/file_example_JPG_1MB-300x200.jpg
file ./file-examples/2017/10/file_example_PNG_2500kB-150x150.jpg 0.0005442111828956218 0.00008249136500534102 0.0005275055599999999 0.0005206898683807779 0.000028430217324762794 0.0004316255599999999 0.0016383345600000001 ./file-examples/2017/10/file_example_PNG_2500kB-150x150.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_2500kB-150x150.jpg 0.18157221087249997 0.005256636349281378 0.18086872856 1.1075896950000002 1.3695272674999999 0.17409895256 0.19366764356 ./file-examples/2017/10/file_example_PNG_2500kB-150x150.jpg
file ./file-examples/2017/10/file-sample_100kB.odt 0.0007003812085936961 0.00010473271642938604 0.00068045456 0.0006627888851236873 0.000039342954930532046 0.0005606155599999999 0.0019826455600000003 ./file-examples/2017/10/file-sample_100kB.odt
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-sample_100kB.odt 0.18124290702666668 0.005750156814983122 0.18004663456 1.1280662533333332 1.3609451133333332 0.17230416256 0.19566721356 ./file-examples/2017/10/file-sample_100kB.odt
file ./file-examples/2017/10/file_example_GIF_500kB-150x150.gif 0.0004947486737829907 0.00008299550799613116 0.0004789305599999999 0.000473581794721407 0.00002781521994134897 0.0003772655599999999 0.0014613625599999998 ./file-examples/2017/10/file_example_GIF_500kB-150x150.gif
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_GIF_500kB-150x150.gif 0.18650712677428574 0.016640752331660544 0.18083615206 1.0962339628571431 1.4111787942857141 0.17288052156 0.23853902856 ./file-examples/2017/10/file_example_GIF_500kB-150x150.gif
file ./file-examples/2017/10/file-sample_150kB-pdf-106x150.jpg 0.0005569560713818527 0.0000845008216904253 0.00054106556 0.0005304197242705991 0.000030453331195896105 0.0004419255599999999 0.0011611345599999998 ./file-examples/2017/10/file-sample_150kB-pdf-106x150.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-sample_150kB-pdf-106x150.jpg 0.180998555685 0.0043898024677495135 0.17936230906 1.1092812575000002 1.3725076425000002 0.17661674656 0.18982494956 ./file-examples/2017/10/file-sample_150kB-pdf-106x150.jpg
file ./file-examples/2017/10/file_example_PNG_3MB.png 0.001046641024924345 0.00013336314277279527 0.0010202735599999999 0.0009471048143053653 0.00010164519027968814 0.0008194445599999998 0.0020909215600000003 ./file-examples/2017/10/file_example_PNG_3MB.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_3MB.png 0.18183516206000003 0.00563325565331813 0.18121544856 1.116502195 1.371667455 0.17429760555999999 0.19365861356 ./file-examples/2017/10/file_example_PNG_3MB.png
file ./file-examples/2017/10/file_example_JPG_500kB-300x200.jpg 0.0005686917719935171 0.00008846356735803308 0.0005516545599999999 0.0005421855948136151 0.000029929620745542944 0.0004589755599999999 0.00122797856 ./file-examples/2017/10/file_example_JPG_500kB-300x200.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_500kB-300x200.jpg 0.18021025118500003 0.004409002915561898 0.17945262456 1.12397582 1.3527518924999997 0.17373325356 0.18779908656 ./file-examples/2017/10/file_example_JPG_500kB-300x200.jpg
file ./file-examples/2017/10/file_example_favicon.ico 0.0006356802291250437 0.00009053390644098826 0.0006154555599999999 0.0006012937445524634 0.000038540750921890716 0.0005322955599999998 0.0016303825599999998 ./file-examples/2017/10/file_example_favicon.ico
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_favicon.ico 0.18527841105999995 0.015327943064951404 0.18002138556 1.1232635075 1.3729525175 0.17210370356 0.22422010256 ./file-examples/2017/10/file_example_favicon.ico
file ./file-examples/2017/10/file_example_GIF_1MB-1024x683.gif 0.0006183559282822298 0.00008486859415844747 0.0006037255599999998 0.0005854860666007243 0.00003669761292449717 0.0005055355599999998 0.0015905045600000001 ./file-examples/2017/10/file_example_GIF_1MB-1024x683.gif
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_GIF_1MB-1024x683.gif 0.18349469474750002 0.007893679192973586 0.18169868256 1.0560047575 1.41728558 0.17596804956 0.21038715055999999 ./file-examples/2017/10/file_example_GIF_1MB-1024x683.gif
file ./file-examples/2017/10/file_example_GIF_500kB.gif 0.0007985511749953997 0.0001279511212584564 0.0007722000599999999 0.000743697810487581 0.00005453800367985277 0.0006064055599999999 0.00182232256 ./file-examples/2017/10/file_example_GIF_500kB.gif
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_GIF_500kB.gif 0.1834727108725 0.005586506923317188 0.18443464605999998 1.1140912575000002 1.386729705 0.17263496156 0.19413772656 ./file-examples/2017/10/file_example_GIF_500kB.gif
file ./file-examples/2017/10/file_example_PNG_2100kB-150x150.png 0.000503174903732434 0.00008471912123965921 0.0004859705599999999 0.00047992821810005566 0.000028728993816750974 0.0003890555599999999 0.00124376556 ./file-examples/2017/10/file_example_PNG_2100kB-150x150.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_2100kB-150x150.png 0.18229671718499998 0.0060716087458874265 0.18120742606 1.1166575075 1.3667842674999997 0.17382820356 0.19503843056 ./file-examples/2017/10/file_example_PNG_2100kB-150x150.png
file ./file-examples/2017/10/file_example_GIF_3500kB-1024x683.gif 0.0006522188404451507 0.00010252995124876421 0.0006335855599999998 0.0006159298569157398 0.00003981020031796502 0.0005100955599999998 0.0016626945599999999 ./file-examples/2017/10/file_example_GIF_3500kB-1024x683.gif
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_GIF_3500kB-1024x683.gif 0.18522026487249998 0.0144900813276384 0.18347412006 1.1396135075000002 1.3817297675 0.17344222156 0.23628774456 ./file-examples/2017/10/file_example_GIF_3500kB-1024x683.gif
file ./file-examples/2017/10/file_example_ODS_5000.ods 0.0007284237375808939 0.00009363690420912796 0.00071362006 0.0006849026964560872 0.00004711260400616333 0.0006026855599999999 0.0017414865600000001 ./file-examples/2017/10/file_example_ODS_5000.ods
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_ODS_5000.ods 0.18316948836 0.013070841913250739 0.17857946856 1.0442940533333334 1.4391429133333333 0.17141993356 0.21331153156 ./file-examples/2017/10/file_example_ODS_5000.ods
file ./file-examples/2017/10/file_example_PNG_2100kB-300x200.png 0.0005535291242085181 0.00008752782755020823 0.00053946556 0.0005262248569612197 0.000031782447552447544 0.0004336755599999999 0.00119062156 ./file-examples/2017/10/file_example_PNG_2100kB-300x200.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_2100kB-300x200.png 0.1860154308725 0.01442889514485646 0.18028880406 1.1249996325 1.35062283 0.17572126956 0.23592118756 ./file-examples/2017/10/file_example_PNG_2100kB-300x200.png
file ./file-examples/2017/10/file_example_PNG_1MB-768x512.png 0.0007125649905054152 0.00010425540946481805 0.0006919150599999998 0.0006677413357400735 0.000046157572202166094 0.0005662155599999998 0.0016272235599999998 ./file-examples/2017/10/file_example_PNG_1MB-768x512.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_1MB-768x512.png 0.17998956131000002 0.004446287222296309 0.18068386456000002 1.0871577575000004 1.3958241424999998 0.17368721556 0.18800292256 ./file-examples/2017/10/file_example_PNG_1MB-768x512.png
file ./file-examples/2017/10/file_example_ODS_1000.ods 0.0006631692595142256 0.00009252132963915066 0.0006485695599999998 0.0006249868979875098 0.00004166242886884109 0.0005456945599999999 0.00138182956 ./file-examples/2017/10/file_example_ODS_1000.ods
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_ODS_1000.ods 0.17733110730999999 0.005676809055050679 0.17558867856 1.074095945 1.3993362675 0.17061967456 0.19450291656 ./file-examples/2017/10/file_example_ODS_1000.ods
file ./file-examples/2017/10/file_example_PNG_500kB.png 0.0007388311697861828 0.00009367725643643771 0.0007230700599999999 0.0006879223848684212 0.00005389119243421053 0.0006092255599999998 0.00148988056 ./file-examples/2017/10/file_example_PNG_500kB.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_500kB.png 0.17913811718500003 0.00800532427180734 0.17846303006 1.1075150075 1.3625458925 0.16947757856 0.20246044756 ./file-examples/2017/10/file_example_PNG_500kB.png
file ./file-examples/2017/10/file_example_PNG_1MB-150x150.png 0.0005029517456038072 0.00008692942642531228 0.0004869250599999999 0.00047985420582986307 0.0000274596728138013 0.00039649555999999995 0.00130244456 ./file-examples/2017/10/file_example_PNG_1MB-150x150.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_1MB-150x150.png 0.17896700330999998 0.005619744300913197 0.17807567256 1.106292695 1.36215708 0.17172906556 0.19377376456 ./file-examples/2017/10/file_example_PNG_1MB-150x150.png
file ./file-examples/2017/10/file_example_PNG_3MB-300x200.png 0.0005409583777914111 0.00009766005766605811 0.0005251655599999999 0.00051546744785276 0.00002898632515337424 0.0004311755599999999 0.00169604956 ./file-examples/2017/10/file_example_PNG_3MB-300x200.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_3MB-300x200.png 0.18062204289333333 0.004997379376284016 0.17998390056 1.0741077866666666 1.3948808466666667 0.17201540356 0.18881878356 ./file-examples/2017/10/file_example_PNG_3MB-300x200.png
file ./file-examples/2017/10/file_example_PNG_2100kB.png 0.0010064302263732405 0.00010942156651688399 0.0009884550599999998 0.0009281886971830994 0.00008185027288732398 0.0008145345599999999 0.0018661175599999998 ./file-examples/2017/10/file_example_PNG_2100kB.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_2100kB.png 0.18865004776 0.009303467029434603 0.18597016556 1.0929150533333334 1.4184692466666666 0.17817824856 0.21203643156 ./file-examples/2017/10/file_example_PNG_2100kB.png
file ./file-examples/2017/10/file_example_GIF_500kB-1024x683.gif 0.0006335366796343398 0.00009054488319049573 0.0006208755599999998 0.0005951961367249608 0.00003959412559618439 0.0005037255599999999 0.0012305745599999998 ./file-examples/2017/10/file_example_GIF_500kB-1024x683.gif
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_GIF_500kB-1024x683.gif 0.18745529149333334 0.009171689010320276 0.18553144356 1.1522399866666668 1.3536045133333332 0.17498992956 0.20314299056 ./file-examples/2017/10/file_example_GIF_500kB-1024x683.gif
file ./file-examples/2017/10/file-example_PDF_1MB-pdf.jpg 0.0006365640261860624 0.00008437189798854753 0.0006247145599999999 0.0006049389632681094 0.00003668466186062476 0.0005140545599999998 0.00148400556 ./file-examples/2017/10/file-example_PDF_1MB-pdf.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-example_PDF_1MB-pdf.jpg 0.18048760467764707 0.008593524705450556 0.17880641456 1.0964162023529411 1.3849441094117647 0.17022358756 0.20557070256 ./file-examples/2017/10/file-example_PDF_1MB-pdf.jpg
file ./file-examples/2017/10/file_example_GIF_1MB.gif 0.0009544191387951809 0.00011000581341985917 0.00093242456 0.0008795320481927724 0.00007858404819277111 0.0007950865599999999 0.0020571635600000002 ./file-examples/2017/10/file_example_GIF_1MB.gif
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_GIF_1MB.gif 0.17681396756 0.004250128464429148 0.17661070756 1.0639440258823527 1.393214050588235 0.16887397956 0.18396890056 ./file-examples/2017/10/file_example_GIF_1MB.gif
file ./file-examples/2017/10/file-example_PDF_1MB.pdf 0.0011349570300761692 0.00011749307390701199 0.0011151500599999998 0.001046141915125136 0.00009441466811751901 0.0009666345599999998 0.00217823056 ./file-examples/2017/10/file-example_PDF_1MB.pdf
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-example_PDF_1MB.pdf 0.17627205274750002 0.005802915960312154 0.17545168056 1.0638041324999998 1.3907855175000001 0.16670082955999999 0.18724276456 ./file-examples/2017/10/file-example_PDF_1MB.pdf
file ./file-examples/2017/10/file_example_GIF_3500kB-150x150.gif 0.000493005781819281 0.00008027682947464319 0.0004789165599999999 0.00046961184647929853 0.00002639491689332124 0.0003852745599999999 0.00115276356 ./file-examples/2017/10/file_example_GIF_3500kB-150x150.gif
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_GIF_3500kB-150x150.gif 0.17765456687250003 0.007202813490651008 0.17553138306 1.048393445 1.4160121425 0.16756590356 0.19540864256 ./file-examples/2017/10/file_example_GIF_3500kB-150x150.gif
file ./file-examples/2017/10/file-example_PDF_1MB-pdf-106x150.jpg 0.0005324682063144566 0.00007809225621149704 0.0005201255599999999 0.0005105136222714343 0.000026574710534640937 0.0004360455599999999 0.00156815856 ./file-examples/2017/10/file-example_PDF_1MB-pdf-106x150.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-example_PDF_1MB-pdf-106x150.jpg 0.17545599443499998 0.005644524179812952 0.17355781106 1.05539257 1.4089154549999996 0.16787853855999998 0.18712948356 ./file-examples/2017/10/file-example_PDF_1MB-pdf-106x150.jpg
file ./file-examples/2017/10/file_example_GIF_3500kB-768x512.gif 0.0005767201383582088 0.00010681803203827989 0.0005578405599999999 0.0005498782496607862 0.000032108025780189966 0.00044700555999999987 0.00202572256 ./file-examples/2017/10/file_example_GIF_3500kB-768x512.gif
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_GIF_3500kB-768x512.gif 0.18146970981 0.008627353941235419 0.18114784056 1.1021880075000001 1.3791625174999997 0.16869979056 0.19971772256 ./file-examples/2017/10/file_example_GIF_3500kB-768x512.gif
file ./file-examples/2017/10/file_example_PNG_1MB-300x200.png 0.0005734916424810298 0.00008993632983883105 0.00055677556 0.00054322421643022 0.000032744394589244455 0.00043561555999999986 0.00139456456 ./file-examples/2017/10/file_example_PNG_1MB-300x200.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_1MB-300x200.png 0.18417063355999996 0.005524034095769868 0.18488851505999998 1.1378497575 1.366415205 0.17662537156 0.19508341556 ./file-examples/2017/10/file_example_PNG_1MB-300x200.png
file ./file-examples/2017/10/file_example_GIF_500kB-768x512.gif 0.0005944875419532912 0.00011911981991758803 0.0005706650599999999 0.0005617664543524418 0.000033683255484784156 0.00045956555999999987 0.0025056415600000002 ./file-examples/2017/10/file_example_GIF_500kB-768x512.gif
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_GIF_500kB-768x512.gif 0.1820057417475 0.004237669168239781 0.18116720706 1.1010428824999998 1.3703646425 0.17574534955999999 0.19157914156 ./file-examples/2017/10/file_example_GIF_500kB-768x512.gif
file ./file-examples/2017/10/file-example_PDF_500_kB.pdf 0.0008332565566808923 0.0001033589182514253 0.0008169705599999999 0.0007800159127548606 0.000056197411095305825 0.0006752045599999999 0.0015419545599999998 ./file-examples/2017/10/file-example_PDF_500_kB.pdf
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-example_PDF_500_kB.pdf 0.18174833081 0.006720205931265746 0.18077208806 1.0862063825000001 1.3926288924999999 0.17361696356 0.20131801956 ./file-examples/2017/10/file-example_PDF_500_kB.pdf
file ./file-examples/2017/10/file_example_PNG_500kB-768x511.png 0.0006951246717847674 0.00008861958533058764 0.0006818155599999998 0.000653496976127321 0.00004687968169761275 0.0005740855599999999 0.0016569815599999998 ./file-examples/2017/10/file_example_PNG_500kB-768x511.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_500kB-768x511.png 0.18233016795999998 0.009211698305702728 0.18064495356 1.1033884533333334 1.3884391133333336 0.17227438356 0.20238682556 ./file-examples/2017/10/file_example_PNG_500kB-768x511.png
file ./file-examples/2017/10/file_example_GIF_3500kB-300x200.gif 0.0004920883265925685 0.00008017744091419203 0.0004784755599999999 0.00047110480787551455 0.000026251502064147336 0.0003809355599999999 0.00108797256 ./file-examples/2017/10/file_example_GIF_3500kB-300x200.gif
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_GIF_3500kB-300x200.gif 0.17899284881000002 0.004853695648861064 0.17785752106 1.06703657 1.4041483925 0.16924024656 0.18683569456 ./file-examples/2017/10/file_example_GIF_3500kB-300x200.gif
file ./file-examples/2017/10/file_example_JPG_2500kB.jpg 0.0010408702002737045 0.00011794932032298413 0.0010185395599999999 0.0009579034213098737 0.00008535491691104593 0.0008678855599999998 0.00207991156 ./file-examples/2017/10/file_example_JPG_2500kB.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_2500kB.jpg 0.1796343079975 0.006866335577309496 0.17974114906 1.06870082 1.3832389549999997 0.16842287956 0.19615862656 ./file-examples/2017/10/file_example_JPG_2500kB.jpg
file ./file-examples/2017/10/file_example_JPG_2500kB-1024x683.jpg 0.0005918026066355762 0.00008857131716121907 0.0005771250599999999 0.0005643507661558948 0.000032148281145902746 0.00048264455999999994 0.0015932355599999999 ./file-examples/2017/10/file_example_JPG_2500kB-1024x683.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_2500kB-1024x683.jpg 0.17942589006 0.005666686546592579 0.17825284006 1.1062785700000002 1.3673575175000001 0.17248125456 0.19354715956 ./file-examples/2017/10/file_example_JPG_2500kB-1024x683.jpg
file ./file-examples/2017/10/file_example_JPG_2500kB-768x512.jpg 0.0005666704784219314 0.00008350856655101152 0.00055528456 0.0005380997927114663 0.00003228464058843195 0.0004599955599999999 0.0014485845599999999 ./file-examples/2017/10/file_example_JPG_2500kB-768x512.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_2500kB-768x512.jpg 0.17905258597176466 0.005169715687770993 0.17799576656 1.0653070847058823 1.4091677564705882 0.17253361256 0.19148923756 ./file-examples/2017/10/file_example_JPG_2500kB-768x512.jpg
file ./file-examples/2017/10/file_example_PNG_500kB-300x200.png 0.0005639681063504761 0.00010987974588837985 0.00053970656 0.0005352188851247313 0.000031886991068678783 0.00043061555999999995 0.0016661775599999997 ./file-examples/2017/10/file_example_PNG_500kB-300x200.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_500kB-300x200.png 0.17900028905999998 0.006522174752189832 0.17808263206 1.0773828825000002 1.395236955 0.17063578956 0.19544257156 ./file-examples/2017/10/file_example_PNG_500kB-300x200.png
file ./file-examples/2017/10/file_example_JPG_500kB-768x512.jpg 0.0005772044465121802 0.00009379534422305374 0.00056150056 0.0005501880095068343 0.00003104589423648249 0.0004568955599999999 0.0016522035599999998 ./file-examples/2017/10/file_example_JPG_500kB-768x512.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_500kB-768x512.jpg 0.184025288435 0.009207743373740286 0.18176872156 1.1405631324999999 1.37947758 0.17283566756 0.21016548456 ./file-examples/2017/10/file_example_JPG_500kB-768x512.jpg
file ./file-examples/2017/10/file-sample_500kB.odt 0.0009224026202564093 0.00015499305607142045 0.0008944700599999999 0.000855873282051283 0.00007084370940170944 0.0007404255599999998 0.00349754156 ./file-examples/2017/10/file-sample_500kB.odt
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-sample_500kB.odt 0.1781463009975 0.0054754532191353105 0.17781687806000002 1.0669506325 1.3924768299999999 0.17137758856 0.18923880956 ./file-examples/2017/10/file-sample_500kB.odt
file ./file-examples/2017/10/file_example_ODP_1MB.odp 0.0010766048340740731 0.00012439463934121818 0.0010547200599999999 0.0009831511851851851 0.00009974392592592596 0.0008802455599999999 0.00275630456 ./file-examples/2017/10/file_example_ODP_1MB.odp
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_ODP_1MB.odp 0.1793239517475 0.004019053646644364 0.17832035456 1.03421407 1.4360215175 0.17167522156 0.18686914456 ./file-examples/2017/10/file_example_ODP_1MB.odp
file ./file-examples/2017/10/file_example_PNG_2500kB.jpg 0.0010287612322972962 0.00010554899002222616 0.0010126480599999999 0.0009357802702702706 0.00009652384169884162 0.0008660045599999998 0.0018941145599999998 ./file-examples/2017/10/file_example_PNG_2500kB.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_2500kB.jpg 0.17874273191294118 0.007484461646305108 0.17756635156 1.0893493788235293 1.3874678152941176 0.16947877956 0.19734188756 ./file-examples/2017/10/file_example_PNG_2500kB.jpg
file ./file-examples/2017/10/file_example_TIFF_1MB.tiff 0.0009748064450754027 0.00011976598478909774 0.0009545035599999999 0.0008959863338533538 0.00008523310452418094 0.0007853255599999998 0.0020643315600000003 ./file-examples/2017/10/file_example_TIFF_1MB.tiff
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_TIFF_1MB.tiff 0.18156811243499996 0.008200657929756149 0.18008702956 1.086426945 1.3974825800000001 0.17139968656 0.20409808256 ./file-examples/2017/10/file_example_TIFF_1MB.tiff
file ./file-examples/2017/10/file_example_ODS_100.ods 0.0006484875451190483 0.00009361570169779457 0.00063448006 0.0006142914880952378 0.000036557008928571406 0.0005320355599999999 0.00167144856 ./file-examples/2017/10/file_example_ODS_100.ods
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_ODS_100.ods 0.17851591730999997 0.004810841890068644 0.17899709156 1.1011070075 1.3789875799999998 0.17186732956 0.18515785956 ./file-examples/2017/10/file_example_ODS_100.ods
file ./file-examples/2017/10/file_example_PNG_1MB.png 0.000961534395443039 0.00010693790504834921 0.0009440650599999999 0.0008823682181110032 0.0000811185394352483 0.0008000855599999998 0.0017539805599999997 ./file-examples/2017/10/file_example_PNG_1MB.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_1MB.png 0.17952456418499999 0.0041424743272452475 0.17818070156 1.0874343200000003 1.378085705 0.17455591556 0.18733266756 ./file-examples/2017/10/file_example_PNG_1MB.png
file ./file-examples/2017/10/file-sample_150kB-pdf-724x1024.jpg 0.0006418632160065592 0.00013910698996791248 0.0006064535599999998 0.0006096451332513328 0.000034693407134071324 0.00049360556 0.0025030205600000003 ./file-examples/2017/10/file-sample_150kB-pdf-724x1024.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-sample_150kB-pdf-724x1024.jpg 0.1798937967364706 0.006755354793981657 0.17826192656 1.0858556729411764 1.397435815294118 0.17243098256 0.19376152656 ./file-examples/2017/10/file-sample_150kB-pdf-724x1024.jpg
file ./file-examples/2017/10/file-example_PDF_1MB-pdf-212x300.jpg 0.0005675184820734634 0.00008219228298446422 0.00055486556 0.0005407871060762088 0.000028908492962581507 0.00045246555999999986 0.0011944015599999998 ./file-examples/2017/10/file-example_PDF_1MB-pdf-212x300.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-example_PDF_1MB-pdf-212x300.jpg 0.18025955455999995 0.009214422473434488 0.17870040856 1.0655316729411766 1.3826996976470587 0.17011674756 0.20838076356 ./file-examples/2017/10/file-example_PDF_1MB-pdf-212x300.jpg
file ./file-examples/2017/10/file_example_ODP_500kB.odp 0.0008338204001697308 0.00009769265879534256 0.0008196945599999999 0.0007755246204620455 0.00006315749174917491 0.0006966855599999998 0.00157132656 ./file-examples/2017/10/file_example_ODP_500kB.odp
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_ODP_500kB.odp 0.17589390650117642 0.0024009773834010165 0.17595552856 1.0835702611764706 1.3736150505882354 0.17094673056 0.17990224056 ./file-examples/2017/10/file_example_ODP_500kB.odp
file ./file-examples/2017/10/file_example_JPG_100kB-1024x683.jpg 0.0006014290299772809 0.00008768551640428523 0.00058782456 0.0005721654268094792 0.00003202857513794224 0.00048611555999999995 0.0016180855599999997 ./file-examples/2017/10/file_example_JPG_100kB-1024x683.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_100kB-1024x683.jpg 0.176952298435 0.0035308809398249936 0.17578691555999998 1.1014268200000001 1.3656767049999998 0.17138593356 0.18322822555999999 ./file-examples/2017/10/file_example_JPG_100kB-1024x683.jpg
file ./file-examples/2017/10/file_example_PNG_500kB-150x150.png 0.0004967772605551683 0.00007399831189830997 0.0004869755599999999 0.0004775224149895899 0.000026350693962526028 0.00039528455999999985 0.00111587856 ./file-examples/2017/10/file_example_PNG_500kB-150x150.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_500kB-150x150.png 0.17844939791294118 0.008333153316950056 0.17414498156 1.098354025882353 1.3640993447058825 0.17115190255999999 0.19777769956 ./file-examples/2017/10/file_example_PNG_500kB-150x150.png
file ./file-examples/2017/10/file_example_JPG_500kB-150x150.jpg 0.0005357906500332215 0.00007453312954689808 0.00052733556 0.0005108288637873745 0.000029227428571428573 0.0004367555599999999 0.00155004356 ./file-examples/2017/10/file_example_JPG_500kB-150x150.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_500kB-150x150.jpg 0.17591639038352944 0.005325803178666426 0.17540439856 1.077924202352941 1.3828159917647058 0.16684839356 0.18575748756 ./file-examples/2017/10/file_example_JPG_500kB-150x150.jpg
file ./file-examples/2017/10/410.svg 0.0006102684738345355 0.0000826703644196845 0.0005971255599999999 0.0005813398008925506 0.00003170268451767937 0.0005072855599999998 0.00142877656 ./file-examples/2017/10/410.svg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/410.svg 0.1737979749975 0.0052340987819240094 0.17365666955999998 1.0658208825 1.3787045175000001 0.16640261756 0.18653146256 ./file-examples/2017/10/410.svg
file ./file-examples/2017/10/file-example_PDF_500_kB-pdf-724x1024.jpg 0.0005956833875025973 0.00010105632357596565 0.0005773355599999999 0.0005650360928299262 0.00003394118462071356 0.0004915355599999999 0.0016015195599999997 ./file-examples/2017/10/file-example_PDF_500_kB-pdf-724x1024.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-example_PDF_500_kB-pdf-724x1024.jpg 0.17648937062249997 0.0035505701943972755 0.17626784206 1.1035566950000002 1.3705070175 0.17013131456 0.18298025856 ./file-examples/2017/10/file-example_PDF_500_kB-pdf-724x1024.jpg
file ./file-examples/2017/10/file_example_JPG_1MB.jpg 0.0010473441538277754 0.0001291024705794333 0.0010255245599999998 0.0009567425983076137 0.00009463305126928825 0.0008655445599999999 0.0021111235600000003 ./file-examples/2017/10/file_example_JPG_1MB.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_1MB.jpg 0.17674399185411765 0.00508330673309413 0.17582083056 1.0301737905882353 1.422929168235294 0.16776842556 0.19081389356 ./file-examples/2017/10/file_example_JPG_1MB.jpg
file ./file-examples/2017/10/file_example_GIF_3500kB.gif 0.0009973450919040327 0.00013101888724758104 0.0009755155599999999 0.0009087589994895363 0.00009216996426748344 0.0008027155599999998 0.00205157356 ./file-examples/2017/10/file_example_GIF_3500kB.gif
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_GIF_3500kB.gif 0.17584894902666667 0.007244074795345997 0.17357005056 1.034972453333333 1.42374258 0.16689492856 0.19197133556 ./file-examples/2017/10/file_example_GIF_3500kB.gif
file ./file-examples/2017/10/file_example_GIF_500kB-300x200.gif 0.0004904011309208392 0.00007935297124772944 0.00047855655999999987 0.0004665301324717289 0.00002776503392568657 0.00038148555999999986 0.0013015545599999998 ./file-examples/2017/10/file_example_GIF_500kB-300x200.gif
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_GIF_500kB-300x200.gif 0.17781845285411765 0.005290785619020897 0.17606461456 1.0668334964705881 1.3918749329411766 0.17014088455999998 0.18636679356 ./file-examples/2017/10/file_example_GIF_500kB-300x200.gif
file ./file-examples/2017/10/file_example_PNG_3MB-1024x683.png 0.0008198145318657452 0.00009427636929825492 0.0008052800599999999 0.0007617749259624894 0.00006129980256663377 0.0006758255599999998 0.00156515056 ./file-examples/2017/10/file_example_PNG_3MB-1024x683.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_3MB-1024x683.png 0.1777923922658824 0.00898629802146059 0.17487815156 1.0759838494117648 1.38587758 0.16944558956 0.20668261856 ./file-examples/2017/10/file_example_PNG_3MB-1024x683.png
file ./file-examples/2017/10/file_example_TIFF_10MB.tiff 0.0009370392502771688 0.00010594183366982067 0.0009188145599999999 0.0008574665024197097 0.00008538427628684562 0.0007756545599999999 0.0017254725599999997 ./file-examples/2017/10/file_example_TIFF_10MB.tiff
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_TIFF_10MB.tiff 0.17622759924750003 0.0044097731408795585 0.17535582655999998 1.0938812575 1.36727283 0.17028415956 0.18537526856 ./file-examples/2017/10/file_example_TIFF_10MB.tiff
file ./file-examples/2017/10/file_example_TIFF_5MB.tiff 0.0009494376115926418 0.00010687876898892704 0.0009339155599999999 0.0008693488739344983 0.00008382585015702099 0.0007881045599999999 0.0017252945599999998 ./file-examples/2017/10/file_example_TIFF_5MB.tiff
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_TIFF_5MB.tiff 0.18617433226588231 0.018329471234790087 0.17978883356 1.1349408494117648 1.3794601682352943 0.17468681655999999 0.23681405056 ./file-examples/2017/10/file_example_TIFF_5MB.tiff
file ./file-examples/2017/10/file_example_PNG_3MB-768x512.png 0.0007047025339292367 0.00009628882496764137 0.0006892835599999999 0.0006615030018621979 0.000045456633147113615 0.0005614255599999999 0.0013819845599999999 ./file-examples/2017/10/file_example_PNG_3MB-768x512.png
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_3MB-768x512.png 0.18168827395999998 0.0036441125962271754 0.18084317356 1.104148186666667 1.3760831799999997 0.17770764756 0.19023551856 ./file-examples/2017/10/file_example_PNG_3MB-768x512.png
file ./file-examples/2017/10/file-example_PDF_1MB-pdf-724x1024.jpg 0.0006282922864050889 0.000093255773975098 0.0006111155599999999 0.0005955715800636259 0.00003574952279957582 0.0004957055599999999 0.00127619456 ./file-examples/2017/10/file-example_PDF_1MB-pdf-724x1024.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-example_PDF_1MB-pdf-724x1024.jpg 0.1853835344975 0.00800845372399397 0.18338551456 1.1597020075 1.3508234549999998 0.17422055456 0.20000359356 ./file-examples/2017/10/file-example_PDF_1MB-pdf-724x1024.jpg
file ./file-examples/2017/10/file_example_JPG_500kB-1024x683.jpg 0.0006577129760708202 0.00010363903582580784 0.0006356855599999999 0.0006269777051413002 0.000032882757916241054 0.0004908155599999998 0.00150462856 ./file-examples/2017/10/file_example_JPG_500kB-1024x683.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_500kB-1024x683.jpg 0.18275880824750002 0.004321611949013713 0.18259423306 1.0782118825000002 1.4124460175000002 0.17463193056 0.19090721356 ./file-examples/2017/10/file_example_JPG_500kB-1024x683.jpg
file ./file-examples/2017/10/file_example_JPG_500kB.jpg 0.000842365929574748 0.00011296752310843597 0.0008225255599999999 0.0007833278912757568 0.00006143997369574748 0.0006759055599999998 0.0017307035599999998 ./file-examples/2017/10/file_example_JPG_500kB.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_500kB.jpg 0.18095607020705884 0.005279799745836732 0.18158610756 1.0869399670588236 1.3818849329411769 0.17120155056 0.19104653856 ./file-examples/2017/10/file_example_JPG_500kB.jpg
file ./file-examples/2017/10/file_example_JPG_100kB-150x150.jpg 0.0005536243168472297 0.00008051259605545 0.0005392700599999999 0.0005283871576384658 0.000029636031649421787 0.00043720555999999996 0.0010962845599999998 ./file-examples/2017/10/file_example_JPG_100kB-150x150.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_100kB-150x150.jpg 0.1888685014975 0.008224550891647139 0.18771580806 1.1614935075 1.3419060175 0.17728785355999999 0.20405488156 ./file-examples/2017/10/file_example_JPG_100kB-150x150.jpg
file ./file-examples/2017/10/file_example_ODP_200kB.odp 0.0007761451858351881 0.00011683822365828012 0.0007492340599999999 0.000729083058648849 0.00004884566443949517 0.0005938155599999999 0.0017259345599999999 ./file-examples/2017/10/file_example_ODP_200kB.odp
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_ODP_200kB.odp 0.18931964974749999 0.013587597183031848 0.18832888056000002 1.109300695 1.4063485800000002 0.16986196956 0.21898289456 ./file-examples/2017/10/file_example_ODP_200kB.odp
file ./file-examples/2017/10/file_example_JPG_100kB-300x200.jpg 0.0006123098213168722 0.00012098073428058891 0.0005900255599999999 0.0005818226455026466 0.00003368830099941213 0.0004515665599999999 0.00207349656 ./file-examples/2017/10/file_example_JPG_100kB-300x200.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_100kB-300x200.jpg 0.19355973749333336 0.017724246549637997 0.19126421956 1.1501069866666667 1.4037099799999997 0.17633321056 0.23543709356 ./file-examples/2017/10/file_example_JPG_100kB-300x200.jpg
file ./file-examples/2017/10/file_example_PNG_2500kB-300x200.jpg 0.0005646409256716429 0.00008091952284615709 0.00055050006 0.0005351326800778713 0.00003222044776119403 0.0004589055599999999 0.00146210356 ./file-examples/2017/10/file_example_PNG_2500kB-300x200.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_PNG_2500kB-300x200.jpg 0.18069009815999998 0.014851997882798134 0.17190302556 1.086030653333333 1.401977846666667 0.16715106056 0.21753916756 ./file-examples/2017/10/file_example_PNG_2500kB-300x200.jpg
file ./file-examples/2017/10/file-sample_150kB-pdf.jpg 0.0006017608331416547 0.00007779707829846182 0.0005786750599999999 0.0005714966058906038 0.00003295677419354839 0.0005096265599999999 0.00128415456 ./file-examples/2017/10/file-sample_150kB-pdf.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file-sample_150kB-pdf.jpg 0.17475953808941178 0.0051403065072373865 0.17628860556 1.1178211435294116 1.3447884623529411 0.16516539756 0.18526913256 ./file-examples/2017/10/file-sample_150kB-pdf.jpg
file ./file-examples/2017/10/file_example_JPG_1MB-150x150.jpg 0.0005315913576989441 0.00007641245474484702 0.0005166155599999999 0.0005065005816554813 0.00002793589006072228 0.00044016555999999994 0.00139268356 ./file-examples/2017/10/file_example_JPG_1MB-150x150.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_1MB-150x150.jpg 0.1739170362475 0.006290866002845985 0.17217704556 1.0582028825 1.39851333 0.16669139055999999 0.19163700256 ./file-examples/2017/10/file_example_JPG_1MB-150x150.jpg
file ./file-examples/2017/10/file_example_GIF_1MB-150x150.gif 0.0005405947335537182 0.00016604549839963027 0.00049049556 0.0005098517906336087 0.00003278944597490053 0.00039010555999999995 0.0018644645599999999 ./file-examples/2017/10/file_example_GIF_1MB-150x150.gif
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_GIF_1MB-150x150.gif 0.176656193435 0.004867073542503582 0.17652224956 1.0796766325 1.3867587675 0.16780156056 0.18786490556 ./file-examples/2017/10/file_example_GIF_1MB-150x150.gif
file ./file-examples/2017/10/file_example_JPG_2500kB-300x200.jpg 0.000551108279546743 0.00007744513899911123 0.00053305456 0.0005245974189486934 0.00003082454516839786 0.00045914555999999987 0.0015713185599999999 ./file-examples/2017/10/file_example_JPG_2500kB-300x200.jpg
PYTHONPATH="$PWD/python" ./python/bin/magika ./file-examples/2017/10/file_example_JPG_2500kB-300x200.jpg 0.17743679142666668 0.0071469045227085404 0.17745117356 1.0531992533333334 1.3984833799999998 0.16870452956 0.19266427955999998 ./file-examples/2017/10/file_example_JPG_2500kB-300x200.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment