-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
137 lines (130 loc) · 5.19 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" />
<title>FileMAC - Multimedia File Operation Kit</title>
<link href="res/styles.css" rel="stylesheet" />
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");
body {
font-family: "Poppins", sans-serif;
background: linear-gradient(to bottom, #f0f8ff, #e0f7fa);
}
</style>
</head>
<body class="font-sans leading-normal tracking-normal">
<!-- Header Section -->
<header class="bg-gradient-to-r from-blue-800 to-blue-600 text-white py-8">
<div class="container mx-auto text-center">
<h1 class="text-5xl font-bold">FileMAC</h1>
<p class="text-lg mt-2">
A Comprehensive Multimedia File Operation Kit
</p>
</div>
</header>
<!-- Main Content Section -->
<main class="container mx-auto my-8 p-6 bg-white shadow-lg rounded-lg">
<!-- Introduction -->
<section class="mb-6">
<h2 class="text-3xl font-semibold mb-4 text-blue-800">Introduction</h2>
<p class="text-gray-800">
FileMAC is a Python-based command-line interface (CLI) utility
designed for efficient file conversion, manipulation, and analysis. It
supports various multimedia operations, including document conversion,
file analysis, and text-to-speech conversion using Google's
Text-to-Speech (gTTS) library.
</p>
</section>
<!-- Features -->
<section class="mb-6">
<h2 class="text-3xl font-semibold mb-4 text-blue-800">Features</h2>
<ul class="list-disc list-inside text-gray-800">
<li>Convert documents between various formats.</li>
<li>Analyze and manipulate multimedia files.</li>
<li>Generate audio files from text using gTTS.</li>
<li>
Command-line interface for easy integration into scripts and
workflows.
</li>
<li>Supports Linux operating systems.</li>
<li>
Encapsulates reputable multimedia elements for robust performance.
</li>
</ul>
</section>
<!-- Installation -->
<section class="mb-6">
<h2 class="text-3xl font-semibold mb-4 text-blue-800">Installation</h2>
<p class="text-gray-800">Install FileMAC using pip:</p>
<pre
class="bg-gray-200 p-4 rounded-lg shadow-md"
><code class="text-gray-800">pip install filemac</code></pre>
<p class="text-gray-800">
Alternatively, install directly from the GitHub repository:
</p>
<pre
class="bg-gray-200 p-4 rounded-lg shadow-md"
><code class="text-gray-800">pip install git+https://github.com/skye-cyber/FileMAC.git</code></pre>
</section>
<!-- Usage -->
<section class="mb-6">
<h2 class="text-3xl font-semibold mb-4 text-blue-800">Usage</h2>
<p class="text-gray-800">
After installation, you can use FileMAC through the command line. For
help and available commands, run:
</p>
<pre
class="bg-gray-200 p-4 rounded-lg shadow-md"
><code class="text-gray-800">filemac -h</code></pre>
<p class="text-gray-800">or</p>
<pre
class="bg-gray-200 p-4 rounded-lg shadow-md"
><code class="text-gray-800">Filemac -h</code></pre>
<p class="text-gray-800">or</p>
<pre
class="bg-gray-200 p-4 rounded-lg shadow-md"
><code class="text-gray-800">FILEMAC -h</code></pre>
<p class="text-gray-800">
To run the CLI app for specific operations, use the following command
structure:
</p>
<pre
class="bg-gray-200 p-4 rounded-lg shadow-md"
><code class="text-gray-800">FileMAC [options] stdin format</code></pre>
<p class="text-gray-800">
Replace <code class="text-blue-800">[options]</code> with the desired
operation flags, <code class="text-blue-800">stdin</code> with the
input file, and <code class="text-blue-800">format</code> with the
target format or operation.
</p>
</section>
<!-- License -->
<section class="mb-6">
<h2 class="text-3xl font-semibold mb-4 text-blue-800">License</h2>
<p class="text-gray-800">
FileMAC is licensed under the GPL-3.0 License. For more details, refer
to the LICENSE file in the repository.
</p>
</section>
<!-- Repository Link -->
<section>
<h2 class="text-3xl font-semibold mb-4 text-blue-800">Repository</h2>
<p class="text-gray-800">
For more information, visit the GitHub repository:
</p>
<a
href="https://github.com/skye-cyber/FileMAC"
class="text-blue-800 hover:underline"
>https://github.com/skye-cyber/FileMAC</a
>
</section>
</main>
<!-- Footer Section -->
<footer class="bg-gray-800 text-white py-4 mt-8">
<div class="container mx-auto text-center">
<p>© 2025 FileMAC. All rights reserved.</p>
</div>
</footer>
</body>
</html>