Questions tagged [shoutcast]

SHOUTcast is cross-platform proprietary software for streaming media over the Internet. It allows digital audio content, primarily in MP3 or HE-AAC format, to be broadcast to and from media player software, enabling the creation of Internet radio "stations"

SHOUTcast is cross-platform proprietary software for streaming media over the Internet. It allows digital audio content, primarily in MP3 or HE-AAC format, to be broadcast to and from media player software, enabling the creation of Internet radio "stations"

405 questions
4
votes
2 answers

Receiving Info of a ShoutCast stream on Android

I am currently making an app to go with my online radio site, I am coding it with Android 2.2 (API 8) and I have got the Shoutcast Stream working with two buttons. Here is the code on my main class: public class GrooveOfMusicRadioActivity extends…
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,318
  • 3
  • 30
  • 55
4
votes
3 answers

Record HTTP Audio stream to file

In C# I want to record an audio stream I am doing something along the lines of: HttpWebRequest req; req = (HttpWebRequest)WebRequest.Create("http://url.com/stream"); Webresponse resp = req.GetResponse(); Stream s = resp.GetResponseStream(); fs =…
bep
  • 880
  • 2
  • 8
  • 18
4
votes
1 answer

Android MediaPlayer's playing state

I'm creating an app that streams audio from the web. I'd like to be able to detect connection interruptions and stuff like that. So when the audio stops playing, I'd tell the user it stopped playing. Does anyone knows a good way to do that? Thanks!
4
votes
3 answers

Internet Radio player component for Delphi/C++Builder

I'm looking for an Internet Radio player (SHOUTcast/IceCast) component for Delphi/C++Builder. Does such a thing exist? ActiveX component OK too. Thanks.
Sharkie
  • 309
  • 3
  • 10
4
votes
4 answers

Method for launching audio player on Android from web page for streaming media

To link to SHOUTcast/HTTP internet radio streams, traditionally you would link to a playlist file, such as an M3U or PLS. From there, the browser would launch the audio player registered to handle the playlist. This works great on any PC, Palm,…
Brad
  • 146,404
  • 44
  • 300
  • 476
4
votes
1 answer

Elixir fetching metadata from shoutcast

I want to make a program which will display currently playing songs from an internet radio stream(SomaFM). I am using HTTPoison library in Elixir. But I am failing to get a response. It just hangs. I am using the following code: HTTPoison.start url…
aeroith
  • 99
  • 2
  • 5
4
votes
4 answers

Play a Shoutcast Stream on iPhone with HTML5

I know this question is already asked in past, but i finally found no answer.... So I got a shoutcast stream, encoding audio/mpeg and I want create a web-app for my iphone to listen to my stream mobile. I tried several methods of…
Matthias Stähle
  • 85
  • 1
  • 3
  • 10
4
votes
2 answers

Android SHOUTcast request

I have written some code in Java that will decode a SHOUTcast stream and return metadata. This code works as intended, but when I port it to Android the same code does not work. Specifically, I can't seem to parse the HTTP response header from the…
zchtodd
  • 1,120
  • 10
  • 23
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
  • 980
  • 1
  • 9
  • 19
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 { …
4
votes
1 answer

How to create a real-time audio streaming queue?

So I'm thinking about creating a node application where users can add songs to a "queue" and have the songs be broadcasted to all users in real time, but after looking around I'm not quite sure how to accomplish this. The primary article I read was…
aftrumpet
  • 989
  • 1
  • 12
  • 25
4
votes
0 answers

How to resolve "Android media player stopping automatically after some time on streaming"?

I am using Android media player for streaming shoutcast streaming. Working fine for some time but in some time the media player is stopping automatically after one or two minutes. I am getting the following in logCat V/MediaPlayer(12795): message…
Krishna
  • 4,701
  • 16
  • 58
  • 95
4
votes
3 answers

Shoutcast Streaming & HTML5 Audio Player

This is really driving me crazy I am trying t make audio tag stream a shoutcast stream I am shooting on this since two days and the best result I got is making it working on Safari I read all the questions on stackoverflow about this I read all…
Seder
  • 2,675
  • 2
  • 19
  • 42
4
votes
1 answer

Playing mp3 Shoutcast streams with HTML5 audio in Firefox?

I'm trying to play mp3 shoutcast stream radio stations with HTML5 audio. I don't think it will be relevant but here is the code anyway: var player = new Audio(); player.autobuffer = true; player.src = "http://173.192.48.71:9048/;"; player.volume =…
Igor Jerosimić
  • 12,987
  • 6
  • 43
  • 51
1 2
3
26 27