zik 0.16.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. data.tar.gz.sig +0 -0
  2. data/ChangeLog +222 -0
  3. data/INSTALL +34 -0
  4. data/Makefile.in +199 -0
  5. data/README +53 -0
  6. data/ZiK.desktop +11 -0
  7. data/ZiK.rb +377 -0
  8. data/configure +269 -0
  9. data/dependencies +142 -0
  10. data/doc/COPYING +340 -0
  11. data/doc/ChangeLog +222 -0
  12. data/doc/html/fr/index.html +128 -0
  13. data/doc/html/index.html +126 -0
  14. data/doc/html/pix/ZiK3.png +0 -0
  15. data/doc/html/pix/capture.png +0 -0
  16. data/doc/html/pix/capture_cd.png +0 -0
  17. data/doc/html/pix/capture_compact.png +0 -0
  18. data/doc/html/pix/capture_radio.png +0 -0
  19. data/doc/html/pix/icon.png +0 -0
  20. data/doc/html/pix/logo.png +0 -0
  21. data/doc/html/styles/main.css +47 -0
  22. data/doc/man/manpage.1 +43 -0
  23. data/gui/assistant.rb +133 -0
  24. data/gui/cdgui.rb +54 -0
  25. data/gui/common.rb +56 -0
  26. data/gui/config.rb +120 -0
  27. data/gui/edit.rb +413 -0
  28. data/gui/error.rb +124 -0
  29. data/gui/gui.rb +1383 -0
  30. data/gui/mod.rb +239 -0
  31. data/gui/preference.rb +496 -0
  32. data/gui/progress.rb +50 -0
  33. data/gui/radiogui.rb +404 -0
  34. data/gui/search.rb +249 -0
  35. data/gui/socket.rb +107 -0
  36. data/mod/brainz.rb +76 -0
  37. data/mod/brainz/dialogs.rb +132 -0
  38. data/mod/brainz/functions.rb +55 -0
  39. data/mod/brainz/ofa.rb +76 -0
  40. data/mod/brainz/song.rb +139 -0
  41. data/mod/brainz/widget.rb +34 -0
  42. data/mod/cover.rb +90 -0
  43. data/mod/cover/application-x-cd-image.svg +666 -0
  44. data/mod/cover/config.rb +79 -0
  45. data/mod/cover/configwidget.rb +35 -0
  46. data/mod/cover/widget.rb +147 -0
  47. data/mod/hotkeys.rb +137 -0
  48. data/mod/hotkeys/config.rb +84 -0
  49. data/mod/hotkeys/configwidget.rb +93 -0
  50. data/mod/interact.rb +131 -0
  51. data/mod/interact/configwidget.rb +107 -0
  52. data/mod/interact/interaction.rb +79 -0
  53. data/mod/notify.rb +128 -0
  54. data/mod/notify/config.rb +96 -0
  55. data/mod/notify/configwidget.rb +76 -0
  56. data/mod/notify/window.rb +56 -0
  57. data/mod/trayicon.rb +83 -0
  58. data/mod/trayicon/config.rb +79 -0
  59. data/mod/trayicon/configwidget.rb +35 -0
  60. data/mod/trayicon/icon.rb +99 -0
  61. data/pix/ZiK.svg +78 -0
  62. data/pix/ZiK3.png +0 -0
  63. data/pix/assistant/capture.png +0 -0
  64. data/pix/gtk-directory.svg +287 -0
  65. data/pix/media-cdrom.svg +292 -0
  66. data/pix/network-wireless.svg +429 -0
  67. data/pix/player_play.svg +286 -0
  68. data/pix/sound.svg +244 -0
  69. data/pix/sound_directory.svg +464 -0
  70. data/player/cdplayer.rb +108 -0
  71. data/player/player.rb +132 -0
  72. data/player/radioplayer.rb +124 -0
  73. data/playlist/cdlist.rb +140 -0
  74. data/playlist/common.rb +343 -0
  75. data/playlist/editlist.rb +50 -0
  76. data/playlist/export.rb +108 -0
  77. data/playlist/playlist.rb +143 -0
  78. data/playlist/radiolist.rb +148 -0
  79. data/playlist/song.rb +122 -0
  80. data/po/ZiK.pot +622 -0
  81. data/po/fr/ZiK.po +658 -0
  82. data/zik +2 -0
  83. metadata +265 -0
  84. metadata.gz.sig +0 -0
data/doc/ChangeLog ADDED
@@ -0,0 +1,222 @@
1
+ ###Version 0.16.1
2
+ Fix a bug in french translation
3
+
4
+ ###Version 0.16.0
5
+ Install missing gstreamer plugins.
6
+ Export current songs to a directory and write a playlist file. (close #28702)
7
+ Add gemspec file.
8
+ Add --show-* options to choose the view on ZiK start.
9
+
10
+ Add an option to hide errors dialogs.
11
+ Fix an infinite loop triggered when all songs are inacessible.
12
+ Fix a bug in cover module: covers where hidden.
13
+ Fix a bug in sessions (Multi and single were switched in preferences dialog).
14
+ Show the right time remaining when playing a "taglib unsupported format" song.
15
+
16
+ Add ModError class so ZiK can handle errors in modules.
17
+ Improve description of version for git version.
18
+
19
+ translation:
20
+ update french.
21
+
22
+ ###Version 0.15.3
23
+ Bug fixes (in assistant and others).
24
+
25
+ translation:
26
+ fix typos in french translation.
27
+
28
+ ###Version 0.15.2
29
+ Fix ZiK crash when running the assistant.
30
+ Do not crash on ZiK start if gstreamer ofa element is not found (brainz module).
31
+ Hide edit in playlist menu to avoid a bug (#28638).
32
+
33
+ translation:
34
+ fix typos in french.
35
+
36
+ ###Version 0.15.1
37
+ Fix a bug in hotkeys module.
38
+
39
+ ###Version 0.15.0
40
+
41
+ An assistant is showed first time ZiK is launched.
42
+ Do not show a new window when editing playlist.
43
+ You can now edit playlist in main window even if you still need to hit the edit button before.
44
+ Searching for tracks in playlist is now integrated to the main window.
45
+ Add a compact view option to show more tracks in playlist.
46
+ Hide modules configuration in preferences dialog.
47
+ Move buttons to left side of the window in radio and cd views.
48
+ Fix a bug in search window: do not show results of previous searches.
49
+ Add a man page.
50
+ Use sexier interface for extensions and directories configuration in preferences dialog and in assistant.
51
+ Support new version (0.2.0) of rghk.
52
+ Old versions are still supported for now.
53
+ Support ruby-taglib2
54
+ ruby-taglib is still supported but depracated
55
+ Support gtk 2.22+
56
+ Set the license for pix/ZiK.svg.
57
+
58
+ translation:
59
+ fix typo in french translation.
60
+ update french translation.
61
+
62
+ ###Version 0.14.0
63
+
64
+ Improve experience with ruby 1.9. (Thanks to Joël Obrecht for his reports on the forum)
65
+ New feature: Single session.
66
+ New Module: Brainz. Use musicbrainz.org to tag your tracks.
67
+ Add modules authors in credits.
68
+ Fix a typo: the playlist format is xspf not xspdf!
69
+
70
+ Let users acces module configuration even if the module is not load. Close bug #27912.
71
+ Update the displayed track name in player zone when the playlist is refreshed.
72
+ Get track duration from GStreamer if taglib return a negative duration.
73
+
74
+ Improve support of xspf format.
75
+ Add xspf and pls support in desktop file.
76
+ Reduce main menu. Show only items corresponding to the selected view.
77
+ Deactivate previous/next buttons when playing webradios.
78
+ Show module area when the expander is point down.
79
+ Bug #27950: the add button can now add severals audio files. Only a playlist file could be add in previous versions.
80
+ Fix bug #27948: tags of song longer than 1 hours cannot be edited.
81
+ Add the quiet option on .desktop file to avoid filling ~/.xsession_errors file.
82
+ Fix a bug: `ZiK --version` did not display the current version.
83
+ Fix a bug: convert track to integer when reading configuration.
84
+ Build modules area only when a module requires it.
85
+
86
+ Drop support for old configuration file format.
87
+ Redefine methods handling modules expander.
88
+
89
+ translation:
90
+ update french.
91
+
92
+ ###Version 0.13.1
93
+ Add credit for artists.
94
+ Fix a bug. Playing radio could freeze ZiK.
95
+
96
+ ###Version 0.13.0
97
+ ZiK will now use the active playlist when next/previous buttons are hitted and
98
+ do not rely on active view for choosing the next song.
99
+ New module to define global hotkeys.
100
+ Import of radios list in m3u format.
101
+
102
+ More tooltips.
103
+ Show hours if the song length is greater than 60 min.
104
+ Add an expander in Cover module.
105
+ Redirect error output to /dev/null when ZiK is called with the quiet option.
106
+ Some change in the module API.
107
+ Fix a bug: player could stop when deleting a radio.
108
+ Fix a bug: seeking was disable when current view was different from current player.
109
+ Fix a bug: the wrong track is played if player is paused when trying to play another tracks.
110
+
111
+ I thank ubuntu-fr forum users for their tests.
112
+
113
+ ###Version 0.12.0
114
+ Notify module : use of system notifications as an option.
115
+ Trayicon module : icon can now interact with ZiK on scroll events.
116
+ Cover module : hide if no cover is found (option).
117
+
118
+ The mouse cursor show that ZiK is busy when refreshing the browser view.
119
+ Show hours if song's duration > 3600 s. Reported by nexus5 on linuxfr.org
120
+ Add some tooltips in preferences window.
121
+ Add spaces between widgets in preferences window.
122
+ Display ZiK version on start.
123
+ Do not modify ruby LOAD_PATH anymore.
124
+ Do not add track number to songs' name if this number is negative.
125
+
126
+ Fix a bug : preferences dialog can crash ZiK. Thanks Simon Arnaud from ruby/gnome2 mailling list.
127
+ Fix bug 27520: Finding in browser was broken. Reported by Balint Dobai-Pataky.
128
+ Fix a bug in cover modules. Thanks soupaloignon for report on forum.ubuntu-fr.org
129
+ Fix a small bug in configure script.
130
+
131
+ ###Version 0.11.2
132
+ Previous versious was released with 0.11.0 code.
133
+
134
+ ###Version 0.11.1
135
+ Drop Gtk.idle (deprecated) to GLib::IDle.
136
+ Fix severals minor bugs in modules.
137
+
138
+ ###Version 0.11.0
139
+ Radios list can now be reordered.
140
+ Starting ZiK is faster.
141
+ Save the list of files shown on browser.
142
+ Change the code used to build browser tree.
143
+ Save tags of songs.
144
+ Show song's name in trayicon tooltip.
145
+ Hide covers when playing radios.
146
+ Users can now choose forground color for notify module.
147
+ Implements destdir in configure script.
148
+
149
+ Fix a bug in configure script (bindir, datadir, etc were not set correctly).
150
+ Fix bugs when dealing with xspdf files containing relative paths.
151
+
152
+ ###Version 0.10.0
153
+ New module: cover.
154
+ Display remaining time.
155
+ New key binding to focus on current song.
156
+
157
+ ###Version 0.9.1
158
+ Fix a bug: crash while reading configuration file.
159
+ Fix a bug that occurs when deleting a "paused song".
160
+
161
+ ###Version 0.9.0
162
+ Support xspdf format.
163
+ Save playlist using relative path (option).
164
+ New module: Notify.
165
+ Improve launch time.
166
+ Improve integration with desktop.
167
+ Add a desktop file.
168
+ Add some minetypes.
169
+ Fix bug: crash when adding a playlist containing wrong path.
170
+ Fix bug: song's name with "&" were not correctly displayed.
171
+ Enable ZiK command (ZiK is a link to ZiK.rb).
172
+ Enable double-click in browser to add a file in playlist.
173
+ Add options to disable features.
174
+ Write modclass (used to wrrite a module) and rewrite TrayIcon module.
175
+
176
+ ###Version 0.8.1
177
+ Improve command line (add or append severals files).
178
+ Add a dialog to edit webradios.
179
+ Reorder playlist by drag&drop in "Edit playlist" window.
180
+ Reorder directories in preferences.
181
+ Add sort by track option.
182
+ Add shuffle and repeat items in menu.
183
+ Play next song on errors instead of stopping the player.
184
+ Check for gst-plugins-base and svg rendering in dependencies script.
185
+ See bug 23569
186
+ Thanks to le.nox from the ubuntu-fr for the report.
187
+ Display audio properties in edit tag windows.
188
+
189
+ ###Version 0.8.0
190
+ Follow redirection when a webradio is moved (url changed).
191
+ Drag&drop from browser to playlist.
192
+ Drag&drop from other applications (nautilus).
193
+ Add sort options for browser
194
+ directories before files,
195
+ case sensitive.
196
+ Add tooltips
197
+ Delete songs using delete key.
198
+
199
+ Fix bug in webradio player.
200
+ Use other urls in playlist if the first one failed.
201
+ Fix bug #23435 (crash when editing tags)
202
+ Fix bug (Files not always added when directory names contain [ or ] carcters)
203
+ Thanks to draco for his test.
204
+ Fix bug (crash when editing an empty playlist)
205
+ Thanks to mathieuI from the ubuntu-fr for the report.
206
+ Fix bug #23436 (crash when using a invalid search pattern)
207
+ thanks to le.nox for the report.
208
+
209
+ ###Version 0.7.1
210
+ Fix bug #23404 (crash when selecting radio view).
211
+ Thanks to le.nox from ubntu-fr for the report.
212
+
213
+ #***0.7.0***
214
+ Change for ruby-gstreamer librairy (from ruby-gnome2 project).
215
+ This change seems to fix bugs with recent gstreamer version (?).
216
+
217
+ #***0.6.0***
218
+ Rewrite from scratch.
219
+ Add cd support.
220
+
221
+ #***0.5.5***
222
+ First public version on rubyforge.
@@ -0,0 +1,128 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
3
+ <head>
4
+ <title>Lecteur audio ZiK</title>
5
+ <meta name="Keywords" content="audio,lecteur, zik" />
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
+ <link rel="stylesheet" media="screen" type="text/css" title="main" href="../styles/main.css" />
8
+ <link rel="shortcut icon" href="../pix/icon.png" />
9
+ </head>
10
+ <body>
11
+ <div id="header"><p><img src="../pix/logo.png" alt="logo ZiK"/> Audio player ZiK</p></div>
12
+
13
+ <div id="side">
14
+ <ul>
15
+ <li><a href="../index.html">English</a></li>
16
+ <li><a href="index.html">Français</a></li>
17
+ </ul>
18
+ <ul>
19
+ <li><a href="#main">Fenêtre principale</a></li>
20
+ <li><a href="#start">Premiers pas</a></li>
21
+ <li><a href="#compact">Vue compacte</a></li>
22
+ <li><a href="#edit">Éditer la liste de lecture</a></li>
23
+ <li><a href="#search">Recherche</a></li>
24
+ <li><a href="#cd">Cd</a></li>
25
+ <li><a href="#radio">Radio</a></li>
26
+ <li><a href="#format">Formats supportés</a></li>
27
+ <li><a href="#binding">Raccoucis clavier</a></li>
28
+ </ul>
29
+ </div>
30
+
31
+ <div id="main">
32
+ <h1><img src="../pix/ZiK3.png" alt="ZiK"/></h1>
33
+ <p>
34
+ ZiK est un lecteur audio basé sur gstreamer.
35
+ L'interface n'utilise pas de bibliothèque audio mais s'appuye sur les chemins des fichiers.
36
+ Ce logiciel libre est distribué sous licence GPL.
37
+ </p>
38
+
39
+ <h2 id="window">Fenêtre principale</h2>
40
+ <img src="../pix/capture.png" alt="capture de la fenêtre principale"/>
41
+ <ol>
42
+ <li>Navigateur: affiche le contenu audio des répertoires choisis.</li>
43
+ <li>Boutons: gérent la liste de lecture (ajouter des chansons depuis le navigateur, supprimer des chansons de la liste de lecture...).</li>
44
+ <li>Liste de lecture.</li>
45
+ <li id="selector">Sélecteur de vue: affiche ou non le navigateur, la liste de lecture.</li>
46
+ </ol>
47
+
48
+ <h2 id="start">Premiers pas</h2>
49
+ <p>
50
+ Tout d'abord, ZiK doit savoir où se trouvent vos fichiers musicaux.
51
+ Préciser les répertoires dans les préférences (<em>Menu navigation, préférences</em>).
52
+ Seuls les répertoires indiqués (et leur sous-répertoires) sont affichés dans le navigateurs.
53
+ De plus, l'affichage ne prend en compte que les fichiers dont l'extension est explicitée dans les préférences.
54
+ </p>
55
+ <p>
56
+ Ajouter les fichiers choisis à la liste de lecture en cliquant le bouton <em>+</em>.
57
+ Écouter vos musiques préférées.
58
+ </p>
59
+
60
+ <h2 id="compact">Vue compacte</h2>
61
+ <img src="../pix/capture_compact.png" alt="Capture de la vue compacte"/>
62
+ <p>
63
+ Sélectionner l'élément lecture grâce au <a href="#selector">sélecteur de vue</a>.
64
+ </p>
65
+
66
+ <h2 id="edit">Éditer la liste de lecture</h2>
67
+ <p>
68
+ Modifier l'ordre des pistes de la liste ainsi que modifier le tag associé à chaque fichier.
69
+ </p>
70
+
71
+ <h2 id="search">Recherche</h2>
72
+ <h3>Navigateur</h3>
73
+ <p>
74
+ Recherche de fichiers basée sur le chemin du fichier ou sur les métadonnées (tag).
75
+ Régler les options de la recherche dans les préférences.
76
+ </p>
77
+
78
+ <h3>Liste de lecture</h3>
79
+ <p>
80
+ Recherche de chansons basée sur leur nom.
81
+ <em>Ctrl+f</em> permet de démarrer une recherche.
82
+ </p>
83
+
84
+ <h2 id="cd">Cd</h2>
85
+ <img src="../pix/capture_cd.png" alt="Capture de la vue cd"/>
86
+ <p>
87
+ Sélectionner l'élément cd à l'aide du <a href="#selector">sélecteur de vue</a>.
88
+ Si votre cd n'est pas trouvé par le programme, modifier le chemin du lecteur dans les préférences.
89
+ Pour lire un cd, vous devez installer:
90
+ </p>
91
+ <ul>
92
+ <li><a href="http://pablotron.org/software/mb-ruby/">mb-ruby</a></li>
93
+ <li><a href="http://gstreamer.freedesktop.org/">gst-plugins-good</a></li>
94
+ <li><a href="http://gstreamer.freedesktop.org/">gst-plugins-ugly</a></li>
95
+ </ul>
96
+
97
+ <h2 id="radio">Radio</h2>
98
+ <img src="../pix/capture_radio.png" alt="Capture de la vue radio"/>
99
+ <p>
100
+ Sélectionner l'élément radio l'aide du <a href="#selector">sélecteur de vue</a>.
101
+ Pour ajouter une radio, indiquer l'url de cette dernière ainsi qu'un nom.
102
+ </p>
103
+
104
+ <h2 id="format">Formats supportés</h2>
105
+ <ul>
106
+ <li>
107
+ Fichier: tous les formats supportés par gstreamer.
108
+ Dépend de quel <a href="http://zik.rubyforge.org/wiki/wiki.pl?Supported_Formats">plug-ins pour gstreamer</a> sont installés.
109
+ </li>
110
+ <li>Liste de lecture: m3u, pls.</li>
111
+ </ul>
112
+
113
+ <h2 id="binding">Raccoucis clavier</h2>
114
+ <ul>
115
+ <li><em>Ctrl+p</em>: lecture/pause</li>
116
+ <li><em>Ctrl+s</em>: arrêt</li>
117
+ <li><em>Ctrl+b</em>: piste précédente</li>
118
+ <li><em>Ctrl+n</em>: piste suivante</li>
119
+ <li><em>Ctrl+flèche vers le haut</em>: augmenter le volume</li>
120
+ <li><em>Ctrl+flèche vers le bas</em>: diminuer le volume</li>
121
+ <li><em>Ctrl+f</em>: recherche dans la liste de lecture</li>
122
+ <li><em>Ctrl+d</em>: centrer la liste de lecture sur la chanson courante</li>
123
+ <li><em>F1</em>: aide</li>
124
+ <li><em>Suppr</em>: supprimer les chansons sélectionnées de la liste de lecture</li>
125
+ </ul>
126
+ </div>
127
+ </body>
128
+ </html>
@@ -0,0 +1,126 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
3
+ <head>
4
+ <title>Audio player ZiK</title>
5
+ <meta name="Keywords" content="audio, player, zik" />
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
+ <link rel="stylesheet" media="screen" type="text/css" title="main" href="styles/main.css" />
8
+ <link rel="shortcut icon" href="pix/icon.png" />
9
+ </head>
10
+ <body>
11
+ <div id="header"><p><img src="pix/logo.png" alt="ZiK logo"/> Audio player ZiK</p></div>
12
+
13
+ <div id="side">
14
+ <ul>
15
+ <li><a href="index.html">English</a></li>
16
+ <li><a href="fr/index.html">Français</a></li>
17
+ </ul>
18
+ <ul>
19
+ <li><a href="#main">Main window</a></li>
20
+ <li><a href="#start">Getting start</a></li>
21
+ <li><a href="#compact">Compact view</a></li>
22
+ <li><a href="#edit">Edit playlist</a></li>
23
+ <li><a href="#search">Search</a></li>
24
+ <li><a href="#cd">Cd</a></li>
25
+ <li><a href="#radio">Radio</a></li>
26
+ <li><a href="#format">Supported formats</a></li>
27
+ <li><a href="#binding">Key bindings</a></li>
28
+ </ul>
29
+ </div>
30
+
31
+ <div id="main">
32
+ <h1><img src="pix/ZiK3.png" alt="ZiK"/></h1>
33
+ <p>
34
+ ZiK is an audio player based on gstreamer.
35
+ It uses the path of your audio files instead of a music library.
36
+ This free software is released under the GPL license.
37
+ </p>
38
+
39
+ <h2 id="window">Main window</h2>
40
+ <img src="pix/capture.png" alt="Capture of the main window"/>
41
+ <ol>
42
+ <li>Browser: show the audio content of directories.</li>
43
+ <li>Buttons: manage the playlist (add songs from the broswer, remove song from the playlist...).</li>
44
+ <li>Playlist: show songs.</li>
45
+ <li id="selector">View selector: display or not the browser, the playlist.</li>
46
+ </ol>
47
+
48
+ <h2 id="start">Getting start</h2>
49
+ <p>
50
+ First, ZiK need to know where is your audio collection.
51
+ Fill in the preferences dialog (<em>Menu browser, preferences</em>).
52
+ ZiK browse only the selected paths (and subfolders).
53
+ Only files with the selected extensions are shown in the broswer view.
54
+ <br />Select files from the browser and add them to the playlist by clicking the <em>+</em> button.
55
+ <br />Play your favorite songs.
56
+ </p>
57
+
58
+ <h2 id="compact">Compact view</h2>
59
+ <img src="pix/capture_compact.png" alt="Capture of the compact view"/>
60
+ <p>
61
+ Select the play item on the <a href="#selector">view selector</a> to hide the browser and the playlist.
62
+ </p>
63
+
64
+ <h2 id="edit">Edit playlist</h2>
65
+ <p>
66
+ Change songs order in playlist and edit songs' tag.
67
+ </p>
68
+
69
+ <h2 id="search">Search</h2>
70
+ <h3>Browser</h3>
71
+ <p>
72
+ Search for files based on path or songs' tag.
73
+ Set the search options in the preferences dialog.
74
+ </p>
75
+
76
+ <h3>Playlist</h3>
77
+ <p>
78
+ Search for songs based on names.
79
+ Use <em>Ctrl+f</em> to start a search.
80
+ </p>
81
+
82
+ <h2 id="cd">Cd</h2>
83
+ <img src="pix/capture_cd.png" alt="Capture of the cd view"/>
84
+ <p>
85
+ Select the cd item with the <a href="#selector">view selector</a>.
86
+ If your cd is not found change the path of your cd device in the preferences dialog.
87
+ In order to enable cd support you have to install:
88
+ </p>
89
+ <ul>
90
+ <li><a href="http://pablotron.org/software/mb-ruby/">mb-ruby</a></li>
91
+ <li><a href="http://gstreamer.freedesktop.org/">gst-plugins-good</a></li>
92
+ <li><a href="http://gstreamer.freedesktop.org/">gst-plugins-ugly</a></li>
93
+ </ul>
94
+
95
+ <h2 id="radio">Radio</h2>
96
+ <img src="pix/capture_radio.png" alt="Capture of the radio view"/>
97
+ <p>
98
+ Select the radio item with the <a href="#selector">view selector</a>.
99
+ To Add your webradio enter an url and choose a name.
100
+ </p>
101
+
102
+ <h2 id="format">Supported formats</h2>
103
+ <ul>
104
+ <li>
105
+ File: all formats supported by gstreamer.
106
+ Depends on which <a href="http://zik.rubyforge.org/wiki/wiki.pl?Supported_Formats">gstreamer plug-ins</a> are installed.
107
+ </li>
108
+ <li>Playlist: m3u, pls.</li>
109
+ </ul>
110
+
111
+ <h2 id="binding">Key bindings</h2>
112
+ <ul>
113
+ <li><em>Ctrl+p</em>: play/pause</li>
114
+ <li><em>Ctrl+s</em>: stop</li>
115
+ <li><em>Ctrl+b</em>: previous song</li>
116
+ <li><em>Ctrl+n</em>: next song</li>
117
+ <li><em>Ctrl+up</em>: volume up</li>
118
+ <li><em>Ctrl+down</em>: volume down</li>
119
+ <li><em>Ctrl+f</em>: search in playlist</li>
120
+ <li><em>Ctrl+d</em>: focus on current song</li>
121
+ <li><em>F1</em>: help</li>
122
+ <li><em>Del</em>: delete selected songs from playlist</li>
123
+ </ul>
124
+ </div>
125
+ </body>
126
+ </html>