"Live" audio streaming, where all listeners hear roughly the same thing at the same time. Technologies such as SHOUTcast, Icecast, DASH, HLS, and Liquidsoap are all welcome here.
Questions tagged [internet-radio]
423 questions
4
votes
2 answers
Streaming audio from online radio
I've had a break from programming from a while and slowly but surely I'm coming back into it. I've been looking for a way to stream (and play) audio from an online radiostation (such as FearFM). I've been looking for duplicates and similar questions…

wvd
- 1,189
- 2
- 12
- 23
4
votes
1 answer
Android - internet radio streaming
I am planing to make a android app for one local radio station
I need to make internet streaming of radio program
Can you please provide some starting point for this, some tutorial or something.

Goran
- 1,239
- 4
- 23
- 36
4
votes
2 answers
How to use Shoutcast in iphone app?
I am only aware of funcationality of ShoutCast that it streams radio list.
But not knowing how to use that in iphone app.
Right now I am just looking on its website http://www.shoutcast.com/
becaues I didn't find much stuff of this by googling…

Heena
- 2,348
- 3
- 32
- 58
4
votes
4 answers
Record online radio stream in VC++
I want to develop a software which can record online radio streams in VC++ using MFC. Any pointers to get me started.

Hemanshu Bhojak
- 16,972
- 16
- 49
- 64
4
votes
1 answer
How do police-scanner radio apps work? Specifically, where are they obtaining the streaming audio data?
Consider this popular mobile app that lets you tune into local police radio chatter.
How exactly do these applications work? They aren't using any built-in radio receiver in the phone, since you can also choose to listen to the radio stations of…

AlanSTACK
- 5,525
- 3
- 40
- 99
4
votes
0 answers
Proxy streaming in Stagefright does not work on some devices
I'm working on a mp3 streaming app and have used the NPR's StreamProxy class. For some devices which have SDK 8 (like EVO on Sprint) the native mediaplayer streaming of mp3 sounds really really bad. The same code works perfectly fine on HTC…

HariKJ
- 323
- 3
- 17
4
votes
0 answers
Stream loudness normalization (ExoPlayer)
Is there any way to normalize loudness while audio streaming (live) via ExoPlayer? I have seen some discussions on ExoPlayer repository but nobody seems to have any solution.

mallaudin
- 4,744
- 3
- 36
- 68
4
votes
1 answer
How to resume playing from background
I am making an online radio station app. The app works good.
My radio doesn't resume after the call is ended. And I have to restart it again.
Here is my code:
void MyAudioSessionInterruptionListener(void *inClientData, UInt32…

Kumar sonu
- 535
- 11
- 24
4
votes
1 answer
Record incoming audio stream node js
I'm looking for a way to record an incoming audio stream from an external source (http://audio12.broadcastify.com/krjb6ymsvnhf54z.mp3?nocache=8396379) into a node server. Ultimately I want to do some processing in real time on the stream and listen…

Bill
- 5,478
- 17
- 62
- 95
4
votes
1 answer
Icecast intro file
Running Icecast 2.4.99.2 on Ubuntu 16.04 just file and would like to add an intro file. With a working source mounted from Darkice default audio card input, when I add the tag to the Icecast configuration file for the mount, it plays but…

rwfitzy
- 413
- 5
- 16
4
votes
1 answer
Google Cast slow for some streams
I have an Android app which plays live streams from web (mostly icecast) via Google Cast. Everything worked fine and fast, but now it takes much longer time for some streams to start (make sound). This may be somehow related to the Chromecast…

Marek Potkan
- 452
- 2
- 9
4
votes
0 answers
How to play shoutcast radio in C# UWP application?
I have UWP(Universal Windows Platform) Application and I want to add shoutcast player, but can't find anything how to do that.
I have Button which should start/stop playing music and volume slider.
I found element in xaml such as MediaElement but…

Levvy
- 1,100
- 1
- 10
- 21
4
votes
0 answers
audio live streaming in android
I am doing a radio live streaming application. My application works fine when there is good network . but it stops working when network strength become slow . I am checking network is available or not. If no network i have shown the message. But the…

user2504840
- 103
- 6
4
votes
2 answers
Android MediaPlayer W/MediaPlayer﹕ info/warning (703, 203)
I want to make radio player example but i have some errors. I can't fix it.
My Source Code
String url = ""; //Shoutcast Radio URL
mp = new MediaPlayer();
mp.setAudioStreamType(AudioManager.STREAM_MUSIC);
try {
…

Mustafa Dilaver
- 53
- 1
- 6
4
votes
1 answer
How ogg radio streaming works?
Recently I tried to understand how ogg vorbis works inside, so I wrote simple encoder/decoder for ogg vorbis. And now I'm trying to understand how all internet ogg radiostations work. And the thing I do not understand: if you need to process all 3…
user2487382