-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrequirements.txt
More file actions
41 lines (32 loc) · 1.29 KB
/
requirements.txt
File metadata and controls
41 lines (32 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Jeffrey Epstein Prison Video Forensic Analysis
# Python Dependencies
# Template engine for HTML report generation
jinja2>=3.0.0
# No other external Python packages required - uses only standard library
# However, you need these system tools installed:
# System Dependencies (install via package manager):
# - ffmpeg (video processing)
# - ffprobe (usually comes with ffmpeg)
# - exiftool (metadata extraction)
# Installation instructions by platform:
# Ubuntu/Debian:
# sudo apt update
# sudo apt install ffmpeg exiftool python3
# macOS (with Homebrew):
# brew install ffmpeg exiftool python3
# Windows:
# 1. Install Python from https://python.org
# 2. Download ffmpeg from https://ffmpeg.org/download.html and add to PATH
# 3. Download exiftool from https://exiftool.org and add to PATH
# All required functionality is provided by Python's standard library:
# - os (file operations)
# - sys (system operations)
# - json (JSON processing)
# - subprocess (running external commands)
# - urllib.request (downloading files)
# - re (regular expressions)
# - base64 (encoding)
# - datetime (timestamp handling)
# - xml.etree.ElementTree (XML parsing)
# The analysis relies on external command-line tools rather than Python packages
# to ensure compatibility with industry-standard digital forensics workflows.