Tagged Questions
19
votes
1answer
5k views
Streaming audio from a Node.js server to HTML5 <audio> tag
I've been experimenting with binary streams in Node.js, and much to my amazement do actually have a working demo of taking a Shoutcast stream using node-radio-stream and pushing it into a HTML5 ...
3
votes
0answers
69 views
Getting hiccup noise from Shoutcast
I'm trying to read Shoutcast stream and then play it using MediaStreamSource. Here is the excellent open source project that saved lot of my time. After little bit modification I'm able to hear ...
3
votes
4answers
9k views
How could I play a shoutcast/icecast stream using HTML5?
Is it possible to play a shoutcast/icecast stream using HTML5?
If so, how should I implement it?
3
votes
5answers
17k views
How to stream a shoutcast radio broadcast in Flash (Shoutcast Flash Player)
I've been looking for a solution to this for years, but nothing is conclusively documented. There are many Shoutcast Flash players out there (e.g. radio.de) so I know it's possible. However, most of ...
2
votes
0answers
499 views
How to read & display ID3 tags while playing shoutcast streaming with Adobe AIR?
How to read & display ID3 tags while playing shoutcast streaming with Adobe AIR + JavaScript (without using external Flex/Flash players) ?
1
vote
2answers
326 views
how to get informed of new song info while retrieving metadata from shoutcast stream
Background:
I'm streaming radio using double buffering approach for html shoutcast. I get metadata information from stream using http://www.smackfu.com/stuff/programming/shoutcast.html
Problem
I have ...
1
vote
3answers
402 views
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 = ...
1
vote
2answers
496 views
SHOUTcast in Windows Phone 7
I know people have asked this before, but i see no answer nor people even commenting about it.
So, i'm trying to make SHOUTcast streaming in WP7, anyone have done it? I know i have to use ...
1
vote
0answers
317 views
SHOUTcast streaming on Android
How can I play a SHOUTcast stream on any Android version before 2.2?
Thanks!
1
vote
2answers
3k views
Web player to use with SHOUTcast
I'm looking for a web player to play a music stream from a SHOUTcast server.
I setup a SHOUTcast DNAS 2.0 Server on CentOS. SHOUTcast can stream music to Windows Media player and winamp; however, ...
1
vote
1answer
1k views
Android Shoutcast: Want help to play ShoutCast Streaming in 1.6
My application plays ShoutCast Streaming and the target OS is 1.6 and above. I have applied some code from NPR application with some modification.
Here is the code
mediaPlayer = new MediaPlayer();
...
1
vote
1answer
479 views
Shoutcast stream buffering with Adobe AIR without using Flash/Flex player?
My application is written in Adobe Air & JavaScript and doesn't use Flash/Flex.
Air.Sound() is used to play (shoutcast) audio streams.
I'm looking for a solution (without using external Flash/Flex ...
1
vote
3answers
6k views
Shoutcast streaming
im currently working on a app for a podcast (katg.com) which will let you listen live etc... however, i have not found any open source code available to stream shoutcast. I know there are some ways of ...
0
votes
0answers
34 views
MIME type audio/mpeg is not streaming?
I am using Matt Gallagher's streaming here.
I am trying to play SHOUTCast API returned urls. But Media with MIME type audio/mpeg are not being played without showing any error.
But MIME type ...
0
votes
2answers
99 views
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 ...
0
votes
1answer
310 views
Recording Stream being played on Android
I am developing a application in Android that plays out a Shoutcast stream using the MediaPlayer. I have a requirement of parallely recording the played stream to the SD card in the MP3 format
Is ...
0
votes
1answer
824 views
Play Shoutcast MP3 radio stream with Python?
I have managed to create an online radio station using Shoutcast and Sam Broadcaster. Now, I am wanting to build my own player for that radio station. I am not sure where to begin, I have googled, but ...
0
votes
1answer
303 views
ShoutCast over SSL
So I've gone ahead and set up my ShoutCast server DNAS and set my DSP in Winamp on my host computer. The server listens on port 8000, so per some instructions I installed an output plugin for winamp ...
0
votes
7answers
9k views
Streaming audio with Flash / Actionscript 3 - Slow playback problem
I've written a simple Flash player for a Shoutcast stream. At first it seemed to work reliably, however about 5% of the time users experience slow playback where the stream plays at roughly half of ...
-1
votes
0answers
55 views
Android 2.2 Streaming works on emulator but not on device
I am basically developing an android streaming application. I got everything to work perfectly on the emulator, but once I install the app on my device it doesn't work. I don't hear anything at all.
...
-1
votes
2answers
241 views
How to read icy protocol in Java ?
I want to read data from a streaming icy protocol.The problem is that all the libraries that I've tried (dsj,MP3SPI) use the HttpUrlConnection to do this.However I've tried it on my windows 7 and I've ...