-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprocessing.html
More file actions
42 lines (38 loc) · 2.07 KB
/
processing.html
File metadata and controls
42 lines (38 loc) · 2.07 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
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Processing: EDRM</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Processing</h1>
<p class="subtitle">Stage 5 of the Electronic Discovery Reference Model</p>
<div style="margin-top: 1rem;">
<a href="index.html" class="link">Back to Home</a>
<button class="link" onclick="window.print()" style="cursor: pointer;">Print Report</button>
</div>
</header>
<main>
<section class="card">
<h2>Detailed Analysis</h2>
<p>Processing involves preparing the collected ESI for review by legal teams. This stage uses automated tools to reduce the sheer volume of data and extract relevant information into a searchable format.</p>
<p>During processing, software identifies and removes exact duplicates through a process called deduplication. It also filters out system files that have no evidentiary value, often using the National Institute of Standards and Technology (NIST) list as a reference. The remaining data is then indexed, and metadata is extracted to allow for rapid searching and organization within a review platform.</p>
<p>Core processing tasks include:</p>
<ul>
<li>Optical Character Recognition (OCR) for non searchable document images.</li>
<li>Expansion of compressed archives and container files.</li>
<li>Extraction of hidden metadata and embedded objects.</li>
<li>Normalization of various file formats into a unified viewing standard.</li>
</ul>
</section>
</main>
<footer>
<p>EDRM Stage Analysis: Professional Documentation Series.</p>
<p>Source Code: <a href="https://github.com/ayushedith/edrm-model" class="link">GitHub Repository</a></p>
<p>Owner: <a href="https://iayush.in" class="link">iayush.in</a></p>
</footer>
</body>
</html>