|
|

- Does jlGui support AAC audio format ?
No, it supports MP3, OGG VORBIS, FLAC, MONKEY's AUDIO, AU, AIFF, WAV, SPEEX audio formats only.
- Sound seems saturated under some JRE 1.5, how to fix that issue ?
Try to low sound volume from the volume slider in the player front-end.
- Is jlGui full open source ?
Yes, all source code is available under LGPL license.
- Where can I find BasicPlayer source code ?
See API section.
- About jlGui Web Start : For my customers using the player, should I link to JavaZOOM web site or install it on my own web server ?
You should install it on your own web server to prevent from javazoom.net web site failure (your users could run the player even if javazoom.net web site is down).
- How to install jlGui Web Start on my own web server ?
- First, download the following package. It includes all binaries (JAR files), a JNLP
file (web start launcher) and a GIF file (logo picture).
- Second, update jlgui.jnlp "codebase" and "homepage" parameters (see bold text
below) with the URL where you will install jlGui web start.
- Third, install all files on your web server.
- Finally, link to jlgui.jnlp in any HTML page.
| <?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+" codebase="http://www.yourserver.com/yourpath/" href="jlgui.jnlp"> <information>
<title>jlGui 2.3.2</title>
<vendor>Music Player for the Java(tm) Platform</vendor>
<homepage href="http://www.yourserver.com"/>
<description>jlGui supports MP3, OGG VORBIS, FLAC, SPEEX, WAV, AIFF, AU audio formats. It is WinAmp skins compliant.
</description>
<icon href="jlguilogo.gif"/>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.5+ 1.4+ 1.3+"/>
<jar href="jlgui3.0.jar" main="true" download="eager"/>
<jar href="basicplayer3.0.jar"/>
<jar href="mp3spi1.9.4.jar"/>
<jar href="vorbisspi1.0.2.jar"/>
<jar href="jspeex0.9.7.jar"/>
<jar href="jl1.0.jar"/>
<jar href="jogg-0.0.7.jar"/>
<jar href="jorbis-0.0.15.jar"/>
<jar href="jflac-1.2.jar"/>
<jar href="kj_dsp1.1.jar"/>
<jar href="tritonus_share.jar"/>
<jar href="commons-logging-api.jar"/>
</resources>
<application-desc main-class="javazoom.jlgui.player.amp.StandalonePlayer">
</application-desc>
</jnlp> |
- How to setup a playlist in my jlGui JNLP file ?
Add song argument as below :
...
<application-desc main-class="javazoom.jlgui.player.amp.Player">
<argument>-song</argument>
<argument>http://www.yourserver.com/yourpath/yourplaylist.m3u</argument>
</application-desc>
... |
- How to start the playback automatically after jlGui Web Start loading ?
Add start argument as below :
...
<application-desc main-class="javazoom.jlgui.player.amp.Player">
<argument>-start</argument>
</application-desc>
... |
- How to setup a skin in my jlGui JNLP file ?
Add skin argument as below :
...
<application-desc main-class="javazoom.jlgui.player.amp.Player">
<argument>-skin</argument>
<argument>http://www.yourserver.com/yourpath/yourskin.wsz</argument>
</application-desc>
... |
- How to display the playlist automatically after jlGui Web Start loading ?
Add -showplaylist argument.
- How to display the equalizer automatically after jlGui Web Start loading ?
Add -showequalizer argument.
|
| |
|
|