Streaming Audio from Online Radio

I stopped programming a bit, but slowly but surely I am returning to it. I was looking for a way to broadcast (and play) audio from an online radio station (like FearFM). I searched for duplicates and similar questions in Stackoverflow, but did not find anything useful. I also looked at Google, but it seems that the audio support in java is a bit dark.

Can someone point me in a direction how to approach this? Libraries, examples, descriptions .. everything will be appreciated :)

Thanks in advance,

Wvd

+4
source share
2 answers

If you want to work with the media in the Java GUI, you can check if JavaFX supports what you need:

http://docs.oracle.com/javafx/2.0/api/javafx/scene/media/package-summary.html#package_description

0
source

im just looking for the exact same thing as you, I found some useful stuff in the JMF api, JMF Framework . in case you have done this already, please share the code, I am also looking for this, send me a PM.

0
source

Source: https://habr.com/ru/post/1399881/


All Articles