-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (77 loc) · 4.06 KB
/
index.html
File metadata and controls
83 lines (77 loc) · 4.06 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FLVFixTool - The Ultimate FLV Repair Tool for macOS</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="container">
<nav>
<div class="logo">FLVFixTool</div>
<div class="controls">
<button id="language-toggle" class="control-button"></button>
<button id="theme-toggle" class="control-button"></button>
</div>
</nav>
</header>
<main>
<section class="hero container">
<div class="hero-content">
<h1 data-key="heroTitle">The Ultimate Tool for Repairing and Editing FLV Files.</h1>
<p data-key="heroSubtitle">Easily inspect, repair corrupted timestamps, and edit metadata of your Flash Video (FLV) files. A native macOS application built for speed and simplicity.</p>
</div>
<div class="hero-banner">
<div class="app-screenshot-placeholder">
<div class="window-body">
<div class="carousel" aria-roledescription="carousel">
<div class="slides">
<div class="slide"><img src="./1.png" alt="screenshot 1"></div>
<div class="slide"><img src="./2.png" alt="screenshot 2"></div>
</div>
<button class="carousel-btn prev" aria-label="Previous slide">‹</button>
<button class="carousel-btn next" aria-label="Next slide">›</button>
<div class="carousel-dots" aria-hidden="true"></div>
</div>
</div>
</div>
</div>
<div style="text-align: center; margin-top: 20px;">
<img src="./logo.png" alt="" width="200" height="200" srcset="">
</div>
<div class="hero-footer">
<a href="https://github.com/Soar-Coding-Life/FLVFixTool/releases/download/1.0.0/FLVFixTool.app.zip" class="cta-button" data-key="downloadButton">Download for macOS</a>
<p class="subtle-note" data-key="downloadNote">Only supported on MacOS 14.0 Sonoma or later.</p>
</div>
</section>
<section class="features container">
<h2 data-key="featuresTitle">Key Features</h2>
<div class="features-grid">
<div class="feature-card">
<h3 data-key="feature1Title">Inspect & Analyze</h3>
<p data-key="feature1Desc">Dive deep into the structure of your FLV files. View headers, metadata, and individual tags in a clear, organized table.</p>
</div>
<div class="feature-card">
<h3 data-key="feature2Title">Repair Corrupted Files</h3>
<p data-key="feature2Desc">Automatically fix common FLV issues, such as incorrect durations and broken timestamps, making your files playable again.</p>
</div>
<div class="feature-card">
<h3 data-key="feature3Title">Edit Metadata</h3>
<p data-key="feature3Desc">Modify the `onMetaData` script tag with ease. Change dimensions, frame rates, and other key properties, then save your changes to a new file.</p>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p data-key="footerText">© 2025 <a href="https://github.com/Soar-Coding-Life/FLVFixTool"> FLVFixTool </a> All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
<script src="carousel.js"></script>
</body>
</html>