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 http://mydomain.com:8000/. With semicolon, with stream.nsv, with stream.nsv&type=mp3 and so on...

I tested it everytime with the Safari browser und nothing happened. I tried several options in the html5 audio tag. preload, auto-buffering etc..... it's still quiet...

Do you have any solutions or snippets or what else?

Thank you :)

link|improve this question
i think you have to debug the code coz there may be other things that might be causing the problems. Posting snippets may not always help but try to debug your code first – Robin Jan 12 '11 at 9:47
what version of Shoutcast as they have changed if you use v2 then there is a new way to do it, and it only works for mp3 – RussellHarrower Apr 3 at 5:44
feedback

3 Answers

you very welcome,sorry i don't know the source for Android,here are links that might help you,good luck with it. http://dev.opera.com/articles/view/everything-you-need-to-know-about-html5-video-and-audio/

link|improve this answer
feedback

HTML5 streaming web pp for iPhone.

<audio controls="> 
 <source src="http://www.yourstreaming.com" type="audio/ogg" />
 <source src="http://www.yourstreaming.com" type="audio/mpeg" />
</audio>
link|improve this answer
<audio controls="> <source src="yourstreaming.com"; type="audio/ogg" /> <source src="yourstreaming.com"; type="audio/mpeg" /> </audio> – Landi Jan 15 '11 at 22:28
Thank you!! It works! – Matthias Stähle Jan 17 '11 at 14:40
So I tried it with Google Android and it dont works. Is there a method for android? A fallback or something? – Matthias Stähle Jan 18 '11 at 9:23
The controls is declared weird, no? on Xhtml, had to be controls='controls' or in html5, just controls without equal something – RaphaelDDL Nov 7 '11 at 12:12
feedback

Try jPlayer I'm pretty sure it can play shoutcast stream, and it works in iPhone. The player uses HTML5, and supports flash fallback.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.