some JMF questions!

hi, I am new to JMF. I am wondering whether I can accomplish the following with JMF.1. play MP3 and WMA(windows media audio)2. Edit MP3 and WMA tags3. Audio streaming using JMF. (like real audio and wma)Thanks!
[252 byte] By [thunderBolta] at [2007-9-19]
# 1
hi, anybody?
thunderBolta at 2007-7-8 > top of java,Security,Cryptography...
# 2
Yes you can play MP3's but not WMA. There is no built in support for editing TAG's, you'll have to use a 3rd party for that ( there are a few,search the web ) You can stream the audio using RTP.
TravisKa at 2007-7-8 > top of java,Security,Cryptography...
# 3
Thank you very much!
thunderBolta at 2007-7-8 > top of java,Security,Cryptography...
# 4

IMO don't use the JMF for playing audio tracks. It is way too slow to intialise each track before it is played. Go to http://www.javazoom.net/ because they have a library to play MP3 tracks which is considerably faster (it converts each track into wav format as they are playing). This means you don't have to distribute the JMF with your application, only the small library from this site.

With regard to reading and editing the track tags, I've searched the internet for such a package and can't find one which does this. The only one which came close was that at http://www.id3.org/ which reads the tags with no problem. However, if you use this package to write the tags, then it corrupts your mp3 file. It was like this until a few months ago, and I don't know if it has been fixed yet.

As for WMA, I don't know. Never tried it.

Hope this helps,

Richard

Mr_Sillya at 2007-7-8 > top of java,Security,Cryptography...
# 5
I've never had that problem, I've work on both the the pure java version of jmfand the windows performance pack. MP3 auido was quick to realize / initalize.(even video wasnt 'too' slow / if you were not streaming). Javazoom has somenice stuff too =)TK.
TravisKa at 2007-7-8 > top of java,Security,Cryptography...