Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: JavaLayer 0.4 - MP3 decoder for Java - is out ! (Read 2971 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

JavaLayer 0.4 - MP3 decoder for Java - is out !

Hi all and happy new year !

JavaLayer 0.4 is out. JavaLayer is an open source, real-time, MP3 decoder/player/converter library for the Java platform. http://www.javazoom.net/javalayer/javalayer.html

Here are changes :
- XING VBR header frame support improved in Header.java :
    + public boolean vbr() added.
    + public int vbr_scale() added.
    + public byte[] vbr_toc() added.
    total_ms(), ms_per_frame(), min_number_of_frames(int), max_number_of_frames(int),
    bitrate_string(), bitrate() methods check for VBR status.

- ID3v2 frames support improved :
    + public InputStream getRawID3v2() added in Bitstream.java

- Misc :
    Bug fixed in the decoder for some +320kbps stream.
    Bug fixed : SYNC conflict with some ID3v2 frames.
    + public int bitrate() added.
    + public int bitrate_instant() added.
    jUnit tests added (see srctest/ folder)


JavaLayer 0.4 - MP3 decoder for Java - is out !

Reply #2
Yes, it will play VBRI MP3 but it won't return the correct average bitrate (it will return the first frame bitrate).

 

JavaLayer 0.4 - MP3 decoder for Java - is out !

Reply #3
Quote
Yes, it will play VBRI MP3 but it won't return the correct average bitrate (it will return the first frame bitrate).

Why? Could this be improved for the next version?