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