Menu

#7 Jake2 CDVolume Patch

open
nobody
None
5
2011-07-23
2011-07-23
Anonymous
No

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 ...)

Discussion

  • Anonymous

    Anonymous - 2011-07-23

    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 ...

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.