-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
137 lines (125 loc) · 3.71 KB
/
index.html
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Exif - Image Metadata Tool</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 10px 0;
}
.container {
max-width: 900px;
margin: 20px auto;
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
}
.feature-list {
margin: 20px 0;
list-style-type: none;
padding: 0;
}
.feature-list li {
padding: 10px;
background-color: #f9f9f9;
margin-bottom: 10px;
border-left: 4px solid #4CAF50;
}
.code-block {
background-color: #333;
color: #eee;
padding: 10px;
border-radius: 5px;
font-family: monospace;
overflow-x: auto;
}
footer {
text-align: center;
margin-top: 20px;
padding: 10px;
background-color: #4CAF50;
color: white;
}
img {
display: block;
margin: 0 auto;
}
</style>
</head>
<body>
<header>
<h1>Exif - Image Metadata Tool</h1>
</header>
<div class="container">
<img src="https://github.com/AryanVBW/Exif/releases/download/Exif/ExIF-Logo_BackgroundWhite.png" alt="Exif Logo" height="200">
<h2>Features</h2>
<ul class="feature-list">
<li>Extract EXIF data from images (JPG, JPEG, PNG)</li>
<li>Clear EXIF data from images</li>
<li>Save EXIF data to a text file</li>
</ul>
<h2>Supported Formats</h2>
<ul class="feature-list">
<li><strong>Images:</strong> PNG, JPG, JPEG, GIF, BMP, TIFF</li>
<li><strong>Videos:</strong> MP4, MKV, AVI, MOV</li>
<li><strong>Audio:</strong> MP3 (limited support)</li>
</ul>
<h2>Installation Instructions</h2>
<p>Follow these steps to install and run the Exif tool:</p>
<div class="code-block">
<pre>
git clone https://github.com/AryanVBW/Exif.git
cd Exif
python3 exif-main.py
</pre>
</div>
<h3>Prerequisites</h3>
<div class="code-block">
<pre>
sudo apt-get install python3 # For Debian/Ubuntu
pip install Pillow moviepy eyed3 # Install required libraries
</pre>
</div>
<h2>Removing EXIF Data</h2>
<p>To remove EXIF data from images, use the following command:</p>
<div class="code-block">
<pre>
python3 remove-exif.py
</pre>
</div>
<h2>Direct Use</h2>
<p>To use the Exif tool directly for metadata extraction:</p>
<div class="code-block">
<pre>
python3 exif-raw.py
</pre>
</div>
<h2>Print EXIF Data</h2>
<p>To print EXIF data directly to the terminal for JPG images:</p>
<div class="code-block">
<pre>
python3 exif.py
</pre>
</div>
</div>
<footer>
<p>Visitor count: <img src="https://profile-counter.glitch.me/Aryanvbw/count.svg" alt="Visitor count"></p>
<p>© 2024 Exif Metadata Tool</p>
</footer>
</body>
</html>