100% pure java - should be cross platform compatible.
- CD (Music) Volume control in the "options" menu (dynamic) & cvsr cd_volume
- support for pls, mp3, ogg, wav, au, aiff, and speex files (or streams)
to define the soundtrack "Tracks"
- new cvar cddev that can be set to either a folder, a playlist file,
or a URL (playlist) to define the sountrack "Tracks"
- "cd info" now reports more info about the "Tracks" (then before ...)
View and moderate all "patches Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Patches"
Jake2 CDVolume Patch
View and moderate all "patches Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Patches"
I left a small printf used for diagnosing a problem in the cd info code. in the file
CDAudio.java under the CD_f xcommand change this
[code]
if (command.equalsIgnoreCase("info")) {
Com.Printf("CD Volume is " + cdvolume + "\n");
Com.Printf(maxTrack + " tracks (Media) on the cd\n");
for (int i=1; i < maxTrack +1 ; i++) {
Com.Printf("file: " + blah blah ...
if (i < 10)
[/code]
to this
[code]
if (command.equalsIgnoreCase("info")) {
Com.Printf("CD Volume is " + cdvolume + "\n");
Com.Printf(maxTrack + " tracks (Media) on the cd\n");
for (int i=1; i < maxTrack +1 ; i++) {
if (i < 10)
[/code]
makes the cd info look nice and clean ... otherwise ugly filename prints ...