Mercurial > audlegacy
annotate README @ 2553:d2994bdc12b0 trunk
[svn] - new translation drop from flameeyes
author | nenolod |
---|---|
date | Mon, 19 Feb 2007 12:27:45 -0800 |
parents | 8216ff3deb90 |
children | 6bbc25a775f0 |
rev | line source |
---|---|
2306 | 1 Audacious |
2 A relatively powerful media player | |
0 | 3 |
2306 | 4 Copyright (c) 2005-2007 Audacious Development Team (see AUTHORS) |
0 | 5 |
6 Based on: | |
2306 | 7 BMP - Beep Media Player (c)2002-2005 |
0 | 8 |
2306 | 9 Which was based on: |
0 | 10 XMMS - X Multimedia System (c)1997-2001 |
11 | |
12 A Cross platform Multimedia Player | |
13 | |
14 Peter Alm, Thomas Nilsson, Olle Hallnas, Håvard Kvålen | |
15 | |
16 | |
17 NOTE: This document is hardly maintained. Please check the Users' Guide on | |
1174 | 18 the Audacious website. |
0 | 19 |
20 | |
21 TABLE OF CONTENTS | |
22 ***************** | |
23 | |
24 1. Disclaimer | |
25 2. Installation | |
26 2.1 Basic Installation | |
27 2.2 Border less Installation | |
28 2.3 Skin Installation | |
29 3. Documentation | |
1174 | 30 3.1 Controlling Audacious |
0 | 31 3.1.1 Key bindings |
32 3.2 Playlist Editor | |
33 3.3 Equalizer | |
34 3.4 Menu | |
35 3.5 Preferences | |
36 3.5.1 Audio I/O Plugins | |
37 3.5.2 Effect/General Plugins | |
38 3.5.3 Visualization Plugins | |
39 3.5.4 Options | |
40 3.5.5 Fonts | |
41 3.5.6 Title | |
42 3.6 Plugins | |
2306 | 43 3.7 Playlist Manager |
0 | 44 4. Command Line Options |
45 5. Features | |
46 5.1 Supported File formats | |
47 5.2 Supported Features | |
1174 | 48 6. Obtaining Audacious |
0 | 49 7. Misc |
50 7.1 Shoutcast support | |
51 7.2 Tips and tricks | |
52 8. Bugs | |
53 9. Contact Email | |
54 | |
55 | |
56 | |
57 | |
58 1. Disclaimer | |
59 ------------- | |
60 | |
61 We are not liable for any damage caused by the use of this program. | |
62 | |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
63 Audacious is NOT a port of Winamp (http://www.Winamp.com). Audacious is a fork of |
1174 | 64 XMMS (http://xmms.org) and BMP (http://beep-media-player.org) which borrowed the |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
65 Winamp GUI. |
0 | 66 |
67 | |
68 2. Installation | |
69 --------------- | |
70 | |
1174 | 71 Audacious requires the following libraries and their development |
0 | 72 packages installed: |
73 | |
74 Glib 2.4 | |
75 (http://www.gtk.org/download/) | |
76 | |
77 GTK+ 2.4 | |
78 (http://www.gtk.org/download/) | |
79 | |
80 libglade >= 2.3.1 | |
81 (http://ftp.gnome.org/pub/GNOME/sources/libglade/2.3/) | |
82 | |
1174 | 83 If you compile Audacious from a fresh CVS checkout, you will also need |
0 | 84 the following tools: |
85 | |
1427 | 86 automake >= 1.9 |
87 autoconf >= 2.59 | |
0 | 88 |
89 Note that these tools and libraries are bundled with major Linux | |
90 distributions. Use the packages provided with them where possible. If | |
91 those packages are not sufficiently new, you may need to search | |
92 third-party repositories for them. | |
93 | |
94 | |
95 2.1 Basic Installation | |
96 ---------------------- | |
97 | |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
98 cd audacious-VERSION |
0 | 99 ./configure |
100 make | |
101 make install | |
102 | |
103 This will put the binary in /usr/local/bin and plugins in | |
1174 | 104 /usr/local/lib/audacious/ |
0 | 105 |
1427 | 106 If you want to use the automatic character detection system, then you should |
107 use --enable-chardet. | |
108 | |
0 | 109 |
110 2.2 Borderless Installation | |
111 --------------------------- | |
112 | |
113 As far as I know most WM's accepts GTK decoration hints so it will | |
114 not have borders. But some WM's can't handle this so you have to | |
115 set in manually. | |
116 | |
117 AfterStep 1.0 ~/.steprc | |
118 Style "XMMS_Player" NoTitle, NoHandles | |
119 Style "XMMS_Playlist" NoTitle, NoHandles | |
120 Style "XMMS_Equalizer" NoTitle, NoHandles | |
121 | |
122 AfterStep 1.4 ~/GNUstep/Library/AfterStep/database | |
123 Style "XMMS_Player" NoTitle, NoHandles | |
124 Style "XMMS_Playlist" NoTitle, NoHandles | |
125 Style "XMMS_Equalizer" NoTitle, NoHandles | |
126 | |
127 Fvwm's ~/.fvwm95rc | |
128 Style "XMMS_Player" NoTitle | |
129 Style "XMMS_Playlist" NoTitle | |
130 Style "XMMS_Equalizer" NoTitle | |
131 | |
132 CTWM's ~/.ctwmrc | |
133 NoTitle and NoBorder sections: | |
134 NoTitle { | |
135 "xmms" | |
136 } | |
137 | |
138 NoBorder { | |
139 "xmms" | |
140 } | |
141 | |
142 2.3 Skin Installation | |
143 --------------------- | |
144 | |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
145 Audacious will create a directory called ~/.share/audacious/Skins. You can unarchive |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
146 the skins the same way as you do for Winamp. |
0 | 147 |
1174 | 148 However, you don't need to as Audacious supports archived skins. Audacious |
0 | 149 currently reads the following formats: zip, wsz, tar, tar.gz and |
150 tar.bz2 | |
151 | |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
152 Just copy the archive to one of the skin paths and Audacious will take care |
0 | 153 of the rest. |
154 | |
155 In order to support zipped skins you will need to have unzip. Unzip | |
156 is bundled with most Linux distributions. | |
157 | |
1174 | 158 Audacious looks for skins in these directories (in listing order): |
0 | 159 |
1174 | 160 <prefix>/share/audacious/Skins |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
161 ~/.share/audacious/Skins |
1174 | 162 ~/.audacious/Skins |
0 | 163 |
164 You can set the environment variable SKINSDIR to another location of | |
165 your choice: | |
166 | |
167 For BASH: | |
168 export SKINSDIR=/path/to/Skins:/more/paths/to/other/locations/of/Skins | |
169 | |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
170 For C Shell: |
0 | 171 setenv SKINSDIR /path/to/Skins:/more/paths/to/other/locations/of/Skins |
172 | |
2311
8216ff3deb90
[svn] - note that WAL (winamp "modern") skins are not supported
nenolod
parents:
2310
diff
changeset
|
173 You should note that skins designed specifically for Audacious are not compatible |
8216ff3deb90
[svn] - note that WAL (winamp "modern") skins are not supported
nenolod
parents:
2310
diff
changeset
|
174 with Winamp. Likewise, we do not support Winamp "modern" skins as there is a lot of |
8216ff3deb90
[svn] - note that WAL (winamp "modern") skins are not supported
nenolod
parents:
2310
diff
changeset
|
175 Winamp-specifics that would have to be reverse-engineered or emulated to properly |
8216ff3deb90
[svn] - note that WAL (winamp "modern") skins are not supported
nenolod
parents:
2310
diff
changeset
|
176 support those skins. |
0 | 177 |
178 3. Documentation | |
179 ---------------- | |
180 | |
1174 | 181 This file or http://audacious-media-player.org |
0 | 182 |
183 | |
1174 | 184 3.1 Controlling Audacious |
0 | 185 -------------------- |
186 | |
1174 | 187 When you start up Audacious, you will get a console very similar to that of |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
188 Winamp. |
0 | 189 |
190 - On the top is the window title bar. To the right you will see 3 buttons, | |
1174 | 191 Left button will minimize Audacious. |
192 Middle button will make Audacious only display the title bar. | |
193 Right button will end the Audacious session. | |
0 | 194 |
195 - The area in the upper left part displays the following: | |
196 - Play state: Paused, Stopped, or Playing | |
197 - Time elapsed in the current song or if you click on it, the reversed. | |
198 - Spectrum analyzer of the sound being played. Right mouse click will | |
199 bring up the Visualization menu. Left mouse button will change the | |
200 analyzer to an oscilloscope and/or none. | |
201 | |
202 - To the right of the Spectrum analyzer is the title of the file being played. | |
203 This also contains the length of the song being played, as well as its | |
204 position in the [unsorted] playlist. Right clicking in this window will bring | |
205 up a new menu with some more options that are self explaining. | |
206 | |
207 - In the left part of the Spectrum analyzer you'll have letters (at least if | |
208 you use the default skin) O A I D V. This is known as the | |
209 "clutterbar'. Left-clicking on these will open up menus or perform the | |
210 listed actions. | |
211 O : Options menu | |
212 A : Always on top | |
213 I : File info box | |
214 D : Double size mode | |
215 V : Visualization menu | |
216 | |
217 - Underneath the track title are the following static informational data: | |
218 - bit rate in KBps (usually 128 or 112) | |
219 - Sample Rate in KHz (usually 44) | |
220 - Stereo or Mono channel mixing | |
221 | |
222 - Underneath the informational data are a few controls you can play with: | |
223 - The first slider controls the volume | |
224 - The second slider controls the balance between speakers | |
225 - The button marked "EQ" loads up the graphic equalizer | |
226 - The button marked "PL" loads up the playlist editor | |
227 - The LARGE slide bar moves from left to right as the song plays. You can | |
228 drag this to jump to another location in the current file. | |
229 | |
230 - On the bottom of the console are the standard buttons you would see on a CD | |
231 player: Previous track, Play, Pause, Stop, Next track, eject, shuffle | |
232 and repeat. | |
233 | |
234 - The eject button doesn't REALLY eject, of course. :) It opens up the | |
235 file requester. The File Requester builds a playlist for the current | |
1174 | 236 Audacious session. You can use it to load files, add files to the list, or |
0 | 237 load all mp3s in a directory. |
238 | |
239 - The shuffle button randomizes the sequence of the playlist. | |
240 | |
241 - The repeat button when enabled makes the playlist loop when it reaches the | |
242 end of the playlist. | |
243 | |
244 | |
245 3.1.1 Key bindings | |
246 ------------------ | |
247 | |
248 Global: (Main, Equalizer and Playlist window) | |
249 | |
250 z = Previous song | |
251 x = Play | |
252 c = Pause | |
253 v = Stop | |
254 b = Next song | |
255 l = Play file (brings up the Load file(s) dialog) | |
256 j = Jump to file (in the existing playlist) | |
257 r = Toggle Repeat | |
258 s = Toggle Shuffle | |
259 | |
260 Control + h = Play location (url) | |
261 Control + p = Preferences dialog | |
262 Control + r = Time remaining | |
263 Control + o = Always on top | |
264 Control + w = Winshade mode | |
265 Control + j = Jump to time | |
266 Control + z = Start of list | |
267 Control + n = No Playlist Advance | |
268 Control + 3 = File info dialog | |
269 | |
270 Control + Alt + w = Toggle Equalizer winshade mode | |
271 Shift + Control + w = Toggle Playlist winshade mode | |
272 | |
273 Alt + e = Toggle playlist window | |
274 Alt + g = Toggle equalizer window | |
275 | |
276 Main window: | |
277 | |
278 Arrow key up = Volume up 2% | |
279 Arrow key down = Volume down 2% | |
280 Arrow key right = Skip 5 seconds forward in song | |
281 Arrow key left = Skip 5 seconds back in song | |
282 | |
283 Playlist window: | |
284 | |
285 Arrow key up = up one step in playlist | |
286 Arrow key down = Down one step in playlist | |
287 | |
288 Delete = Remove selected songs from playlist | |
289 Page Up = Move one page up | |
290 Page Down = Move one page down | |
291 Home = Go to the first song | |
292 End = Go to the last song | |
293 Enter = Play selected song | |
294 Insert = Add file dialog | |
295 Shift + Insert = Add directory dialog | |
296 Alt + Insert = Add url dialog | |
297 | |
298 Equalizer shade mode: | |
299 | |
300 Arrow key up = Volume up 2% | |
301 Arrow key down = Volume down 2% | |
302 Arrow key right = Balance 4% to right | |
303 Arrow key left = Balance 4% to left | |
304 | |
305 | |
306 3.2 Playlist editor | |
307 ------------------- | |
308 | |
309 To access the Playlist editor, select the button labeled "PL" on the right | |
1174 | 310 side of the Audacious console. |
0 | 311 |
312 This will bring up the actual playlist window, here you'll find 5 buttons. | |
313 All of these buttons can be held down to bring up an extra menu. | |
314 From left to right: | |
315 | |
316 file + : will add a file to current playlist, held down mode you'll have | |
317 2 extra options | |
318 dir : will let you pick a directory (recursive) | |
319 url : will let you add an url for streaming | |
320 | |
321 file - : will delete the highlighted file, held down mode you'll have 3 | |
322 more options | |
323 crop : delete all files except the highlighted in the list | |
324 all : delete all files in the list | |
325 misc : *** NOT FUNCTIONAL *** | |
326 | |
327 sel all : select all files in current playlist, held down mode you'll have | |
328 2 extra options | |
329 sel zero : select none | |
330 inv sel : invert you selection | |
331 | |
332 misc opts : held down you'll have 2 extra options | |
333 fileinfo : opens the file info dialog. | |
334 sort : release button on this will bring up another menu with sort options | |
335 | |
336 load list : will let you pick a playlist to load, held down you'll have | |
337 2 extra options | |
338 save : will let you save your playlist | |
339 new : will empty the playlist and let you create a new playlist | |
340 | |
341 If you want to select/deselect files in the filrequester/playlist editor use | |
342 CTRL for files and SHIFT key for blocks of files. You can also browse the PL | |
343 using the cursor keys and enter to select song. Pressing the delete button will | |
344 remove the song from the playlist. If your mouse is equipped with a mouse | |
345 wheel, you can use this to scroll up and down. | |
346 | |
347 3.3. Equalizer | |
348 -------------- | |
349 | |
350 To access the Equalizer, select the button labeled "EQ" on the right | |
1174 | 351 side of the Audacious console. |
0 | 352 |
353 That will bring up the Equalizer window. It looks like an equalizer on a stereo | |
354 and behaves like one as well. Press the button labeled ON to enable the use of | |
355 the equalizer, once you turned it on you use it as a normal equalizer. | |
356 | |
1174 | 357 EQ presets will be saved in ~/.audacious/config when you close Audacious. You can also |
358 have your own presets for different song using the "Preset" button, Audacious can | |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
359 also import/export from Winamp's preset files. |
0 | 360 |
1174 | 361 If 'Auto' is enabled, Audacious will try to load equalizer presets like this: |
0 | 362 |
363 1: Look for a preset file in the directory of the file we are about to play. | |
364 2: Look for a directory preset file in the same directory. | |
365 3: Look for a preset saved with the "auto-load" feature. | |
366 4: Finally, try to load the "default" preset. | |
367 | |
368 The 'preset' button will open up a menu with the following options: | |
369 | |
370 Load | |
371 Preset : Will open a window with all available presets. | |
372 Auto-load preset : Will open a window with all available auto-load | |
373 presets. | |
374 Default : Will load the default preset. | |
375 Zero : Will reset the equalizer to zero. | |
376 From file : Will load from a .preset file | |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
377 From Winamp EQF file : Will load from a Winamp equalizer file. If you |
0 | 378 choose a library file only the first entry will |
379 be loaded. | |
380 Import | |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
381 Winamp presets : Imports the presets contained in an Winamp equalizer |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
382 library file (often named Winamp.q1) and add all |
0 | 383 the entries to the Preset window. |
384 Save | |
385 Preset : Let you name the current preset and save it. | |
386 Auto-load preset : Saves the current settings as a preset for the song | |
387 currently playing. | |
388 Default : Saves the default value for the equalizer. | |
389 From file : Saves the current settings in a preset file. | |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
390 From Winamp EQF file : Exports the current settings to a file readable by |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
391 Winamp. |
0 | 392 Delete |
393 Preset : Let you delete a preset from the list. | |
394 Auto-load preset : Let you delete a auto-load preset from the list. | |
395 | |
396 Configure Equalizer : Change the default names of directory based | |
397 preset files. | |
398 | |
399 3.4. Menu | |
400 --------- | |
401 | |
1174 | 402 There are several menu hot spots on the Audacious window. One place is at the left |
0 | 403 hand side of the visual window described in sections 3.1 If you click the right |
404 mouse button in the main window, the menus will also pop up (same as clicking | |
405 the button on the top left corner). | |
406 | |
407 3.5. Preferences | |
408 ---------------- | |
409 | |
410 Use the menu to open Options / Preferences or press CTRL-P to bring the | |
411 preferences dialog up. | |
412 | |
413 3.5.1. Appearance | |
414 ----------------- | |
415 | |
416 Skins | |
417 In the skinlist you can choose a skin. How to install skins is described above. | |
418 Click on a skin in the list to change to it. | |
419 | |
420 Fonts | |
421 You can set the font in the main window by setting the 'Player' font. You can | |
422 change the playlist font by setting the 'Playlist' font. | |
423 | |
424 Miscellaneous | |
425 Show track numbers in playlist - Enable/disable displaying of track numbers in | |
426 the playlist. | |
427 Use custom cursors - Enable/disable custom cursors set by the skin. | |
428 | |
429 | |
430 3.5.2. Mouse | |
431 ------------ | |
432 | |
433 Mouse wheel | |
1174 | 434 Change how Audacious handles scroll behaviours. |
0 | 435 |
436 3.5.3. Playlist | |
437 --------------- | |
438 | |
439 Filename | |
440 Convert underscores to blanks - Converts '_' (underscores) to ' ' in the | |
441 playlist. | |
442 Convert %20 to blanks - Converts '%20' to ' ' in the | |
443 playlist. | |
444 | |
445 Metadata | |
446 Load metadata from playlists and files - Loads metadata from files and | |
447 playlists (e.g. ID3 tags). | |
448 | |
449 Playback | |
450 Don't advance in playlist - Don't advance to the next song in the playlist when | |
451 the current song ends. | |
452 Pause between songs - Set the time (in secons) to pause on songchange | |
453 | |
454 Song display | |
455 Title format - Choose the format to display the song names in the playlist. | |
456 Custom string - When the above option is set to 'Custom' insert a string of | |
457 substitutes here. | |
458 | |
459 3.5.6. Plugins | |
460 -------------- | |
461 | |
462 Enable/disable and configure plugins in this section. | |
463 | |
464 Choose a tab to list one of the types of plugins: | |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
465 - Decoders (filetype/device support) |
0 | 466 - General (general plugins) |
467 - Visualization (visualization plugins) | |
468 - Effects (effect plugins) | |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
469 |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
470 3.5.7. Audio |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
471 ------------ |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
472 |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
473 The settings in this section are related to the audio system. |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
474 |
0 | 475 |
476 3.6 Plugins | |
477 ----------- | |
478 | |
2306 | 479 Plugins are what makes Audacious work, by moving most of the code out of |
480 Audacious and into a plugin architecture it's possible to change almost | |
481 everything in Audacious. There are today 8 different types of plugins. | |
0 | 482 |
2306 | 483 However to promote maximum flexibility of the platform itself, we no longer |
484 include any plugins with the Audacious core. | |
0 | 485 |
2306 | 486 You will need to download and install our plugin pack for Audacious if you |
487 expect it to do anything useful (or install someone else's plugin pack if one | |
488 should exist). | |
0 | 489 |
2306 | 490 Additionally, you can find a list of plugins at: |
491 http://audacious-media-player.org/Plugins | |
0 | 492 |
2306 | 493 You should note that third-party plugins are not supported by the Audacious |
494 development team, and that you should report any issues with them on our forums, | |
495 but NEVER on our bugtracker. | |
0 | 496 |
2306 | 497 3.7 Playlist Manager |
498 -------------------- | |
0 | 499 |
2306 | 500 Audacious supports multiple playlists (think foobar2000). For the manipulation of |
501 playlists, we have included a playlist manager tool. | |
0 | 502 |
2306 | 503 It is accessible from the Playlist menu. |
0 | 504 |
505 | |
506 4. Command Line Options | |
507 ----------------------- | |
508 | |
2306 | 509 audacious --help will produce: |
0 | 510 |
2306 | 511 Usage: audacious [options] [files] ... |
0 | 512 |
513 Options: | |
514 -------- | |
515 | |
516 -h, --help Display this text and exit. | |
1174 | 517 -n, --session Select Audacious/XMMS session (Default: 0) |
0 | 518 -r, --rew Skip backwards in playlist |
519 -p, --play Start playing current playlist | |
520 -u, --pause Pause current song | |
521 -s, --stop Stop current song | |
522 -t, --play-pause Pause if playing, play otherwise | |
523 -f, --fwd Skip forward in playlist | |
524 -e, --enqueue Don't clear the playlist | |
525 -m, --show-main-window Show the main window | |
526 -v, --version Print version number and exit. | |
2306 | 527 -H, --headless Headless operation |
528 -E, --enqueue-to-temp Enqueues to a temporary playlist. | |
0 | 529 |
530 You can specify files on the command line, e.g: | |
531 | |
2306 | 532 audacious file1.mp3 file2.mp3 file3.mp3 |
533 audacious *.mp3 | |
534 audacious playlist.m3u playlist.pls playlist.xspf | |
0 | 535 |
2306 | 536 If you do this while Audacious is running, the current playlist |
0 | 537 will be cleared and the files/playlist specified on the command |
538 line will be used instead. | |
539 | |
2306 | 540 To keep the current playlist intact use the -E option, which will |
541 create a new temporary playlist with the requested media, or the | |
542 -e option, which will append to your currently selected playlist. | |
0 | 543 |
544 | |
545 5. Features | |
546 ----------- | |
547 | |
2306 | 548 5.1 Supported Features |
0 | 549 ---------------------- |
550 | |
551 Seeking in files | |
552 Volume/Balance | |
553 Shuffle play | |
554 Repeat play | |
555 Playlist editor | |
556 Spectrum Analyzer | |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
557 One Line mode al'a WinShade in Winamp |
0 | 558 Oscilloscope |
559 Timer Elapsed/Timer Remaining | |
560 Plug-in system Output/Input/Effect/General/Visualization | |
561 Equalizer | |
562 Double Size option | |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
563 Winamp 2.0 skin support (can use wsz files) |
0 | 564 GTK Requesters (with theme support) |
565 Streaming/Shoutcast(1.0/1.1)/Icecast support | |
566 Auto remove borders if the WM has support for it | |
567 Fast jump in playlist | |
568 Scroll wheel support | |
569 Saves HTTP streams to HD | |
570 HTTP authentication | |
571 Plays MPEG layer 1/2/3, WAV, Ogg Vorbis | |
572 Compiles and works on other Unixes | |
573 Proxy authentication support | |
574 | |
575 | |
1174 | 576 6. Obtaining Audacious |
0 | 577 ------------------- |
578 | |
579 Currently, we only provide source tarballs at: | |
580 | |
1174 | 581 http://audacious-media-player.org/Downloads |
0 | 582 |
1174 | 583 The Subversion snapshots listed are not regularly updated. We |
584 encourage you to download Audacious straight from our SVN repository: | |
0 | 585 |
1174 | 586 svn co http://svn.atheme.org/audacious/trunk audacious-devel |
587 | |
0 | 588 |
589 6.1 Obtaining Skins | |
590 ------------------- | |
591 | |
1174 | 592 You can find Audacious/XMMS skins made by Audacious/XMMS users at: |
0 | 593 |
594 http://www.xmms.org/skins.html | |
595 http://themes.org/skins/xmms | |
596 | |
1174 | 597 You can find more places on our website, at: |
598 | |
599 http://audacious-media-player.org/Skins | |
600 | |
0 | 601 |
602 7. Misc | |
603 ------- | |
604 | |
605 7.1. Tips and Tricks | |
606 ------------------- | |
607 | |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
608 If you have a windows partition with Winamp installed, a good idea would be to |
0 | 609 set the SKINSDIR variable to that dir. |
610 | |
1174 | 611 Audacious features some command line options like next/previous songs, those |
0 | 612 things can be binded to a key. I use AfterStep and the useless window keys |
613 for this. Here is an example from my .steprc: | |
614 | |
1174 | 615 Key Meta_R A N Exec "Audacious" audacious -r |
616 Key Menu A N Exec "Audacious" audacious -f | |
0 | 617 |
618 If you want all your mp3's in one playlist an easy way is: | |
619 locate .mp3 > /path/to/playlistname | |
620 | |
621 (considering you have a fairly recent updatedb, don't blame us if locate don't | |
622 find the file you downloaded 3 minutes ago) | |
623 | |
624 | |
625 8. Bugs | |
626 ------- | |
627 | |
1174 | 628 Audacious is under heavy development and as such, has quite a number of |
0 | 629 bugs. Our bug tracker page is maintained at: |
630 | |
2306 | 631 http://bugs-meta.atheme.org/ |
0 | 632 |
633 It will continue to have bugs as we fix and introduce new ones through | |
634 rewriting and enhancement. Help us along by reporting new bugs, and | |
635 verifying existing ones. | |
636 | |
637 | |
1174 | 638 9. Contact Emails |
639 ----------------- | |
0 | 640 |
641 Project Admins: | |
642 | |
2306 | 643 William Pitcock email: nenolod at sacredspiral.co.uk |
1174 | 644 Tony Vroon email: chainsaw at gentoo.org |
0 | 645 |
2310
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
646 Alternatively, you can try the mailing list at audacious@atheme.org. |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
647 Subscription information is available at: |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
648 |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
649 http://mail.atheme.org/mailman/listinfo/audacious |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
650 |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
651 If a mailing list is not interesting to you, you can try our forums: |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
652 |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
653 http://boards.nenolod.net |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
654 |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
655 There is also an IRC channel at irc.atheme.org #audacious. You should |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
656 note that this IRC presence is mainly for internal project use, but |
9e0c93a99fcc
[svn] - some more updates, e.g. IRC channel/mailing list/forums
nenolod
parents:
2306
diff
changeset
|
657 that doesn't stop 50-someodd people from visiting there. |