-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (85 loc) · 3.52 KB
/
index.html
File metadata and controls
94 lines (85 loc) · 3.52 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
84
85
86
87
88
89
90
91
92
93
94
---
title: Audio File Encoder
description: Flacon is a open source audio file encoder.
---
<section class="hero">
<div class="text-container">
<div class="hero-title editable">Flacon is a open source <strong>audio file encoder</strong>.</div>
<p class="subtext editable">You can split a single large audio file containing the entire album into the separate audio tracks.</p>
<div class="cta button download"><a id="downlod_button" target="_blank" href="{{ site.baseurl }}/download/">Get Flacon {{ site.flacon.release.version }}</a></div>
<div class="heroimg">
<img src="{{ site.baseurl }}/images/landing-main.png" alt="Main window" class="screenshot editable" />
</div>
</div>
</section>
<div class="content landing">
<section>
<div class="container flex">
<div class="text editable">
<h1>What is Flacon?</h1>
<p>Flacon extracts individual tracks from one big audio file containing the entire album of music and saves them as separate audio files.</p>
<p>To do this, it uses information from the appropriate CUE file. Besides, Flacon makes it possible to conveniently revise or specify tags both for all tracks at once or for each tag separately.</p>
</div>
<div class="image">
<img src="{{ site.baseurl }}/images/landing-convert.png" alt="Conversion process" class="editable" />
</div>
</div>
</section>
<section>
<div class="container flex">
<div class="text editable">
<h1>Features</h1>
<div class="text-block">
<ul>
<li>Supported input formats: WAV, FLAC, APE, WavPack, True Audio (TTA)</li>
<li>Supported out formats: FLAC, WAV, WavPack, AAC, OGG or MP3</li>
<li>Replay Gain analysis: ALBUM-gain and TRACK-gain modes</li>
<li>Multi-threaded conversion process</li>
<li>Automatic character set detection for CUE files</li>
<li>Generation of the pertrack CUE file in the output dir</li>
</ul>
</div>
</div>
<div class="image">
<img src="{{ site.baseurl }}/images/landing-config.png" alt="Preferences dialog" class="editable" />
</div>
</div>
</section>
<section class="changelog">
<div class="container flex">
<div class="changelog-block">
{% for post in site.categories.changelog limit:1 %}
<div>
<h1><small>What's New in</small> <strong>{{post.title}}</strong></h1>
<div class="date">{{post.date | date_to_string }}</div>
</div>
<div>
{{ post.content }}
<div class="right"><a href="changelog">Full changelog</a></div>
</div>
{% endfor %}
</div>
</div>
</section>
<!--
<section class="bottom-cta">
<h2 class="editable"><strong>Improve</strong> your sales process today</h2>
<div class="button alt"><a href="download">FREE DOWNLOAD</a></div>
</section>
-->
</div>
<script>
document.addEventListener("DOMContentLoaded", function(){
// Download button ...............
if (navigator.appVersion.indexOf("Mac")!=-1) {
document.getElementById("downlod_button").innerHTML = "Download Flacon for macOS";
document.getElementById("downlod_button").title = "Download Flacon {% include version.apple %} for macOS";
document.getElementById("downlod_button").href = "{% include url.apple %}";
}
if (navigator.appVersion.indexOf("Linux")!=-1 || navigator.appVersion.indexOf("X11")!=-1) {
document.getElementById("downlod_button").innerHTML = "Download Flacon for Linux";
document.getElementById("downlod_button").title = "Download Flacon {% include version.linux %} for Linux";
document.getElementById("downlod_button").href = "{% include url.linux %}";
}
})
</script>