-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
111 lines (100 loc) · 2.73 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
<!-- vim: set ts=4 sw=4 tw=0: !-->
<!DOCTYPE html>
<html>
<head>
<title>Celluloid</title>
<link rel="stylesheet" type="text/css" href="stylesheets/index.css">
<link rel="shortcut icon" href="images/favicon.png">
</head>
<body>
<a href="https://github.com/celluloid-player/celluloid">
<img style="position: absolute; top: 0; left: 0; border: 0;"
src="https://s3.amazonaws.com/github/ribbons/forkme_left_red_aa0000.png"
alt="Fork me on GitHub">
</a>
<div class="navbar-bg">
<div class="navbar">
<div class="navitem current-navitem">
Home
</div>
<a class="navitem" href="installation.html">
<div class="navitem">
Installation
</div>
</a>
<a class="navitem" href="bug-reports.html">
<div class="navitem">
Bug Reports
</div>
</a>
<a class="navitem" href="faq.html">
<div class="navitem">
FAQ
</div>
</a>
</div>
</div>
<div class="top-bg">
<div class="title">
<img class="title" src="images/celluloid.svg" alt="Celluloid logo"/>
Celluloid
</div>
<div class="subtitle">
Simple GTK+ frontend for mpv
</div>
<div class="screenshot">
<div>
<img class="screenshot" src="images/screenshot-0.png" alt="screenshot"/>
</div>
</div>
</div>
<div class="content-bg">
<div class="content">
<div class="overview">
<h2>Overview</h2>
<p>
Celluloid (formerly GNOME MPV) is a simple GTK+
frontend for mpv. It aims to be easy to use while
maintaining high level of configurability.
</p>
</div>
<h2>Features</h2>
<div class="features-grid">
<div class="feature">
<h3>Configuration files</h3>
<p>
Celluloid is capable of using mpv's configuration
files as-is. Keybindings can be set up using mpv's
input configuration file.
</p>
</div>
<div class="feature">
<h3>Drag and drop playlist</h3>
<p>
The playlist entries can be added, removed, or
rearranged easily with drag and drop operations.
</p>
</div>
<div class="feature">
<h3>MPRIS2 support</h3>
<p>
Celluloid implements the MPRIS D-Bus Interface.
This allows for better integration with desktop
environments that have compatible MPRIS clients.
</p>
</div>
<div class="feature">
<h3>Wayland support</h3>
<p>
Celluloid is fully functional on Wayland.
</p>
</div>
</div>
</div>
</div>
<div class="footer">
Copyright © 2018-2022 gnome-mpv.
This webpage is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.
</div>
</body>
</html>