Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Web and WebWorks Development

Reply
Contributor
linuxq
Posts: 10
Registered: ‎02-29-2012
My Carrier: O2 Germany

Audiostream doesn't play

Hi,

 

I am currently working on a webradio / podcast app for webOS and Playbook, using Enyo framework (www.enyojs.com).

 

I use HTML5 audio to play mp3-streams or podcast episodes. On webOS it works perfectly. On the Playbook the audiostreams won't play, but single Podcasts episodes do play on the Playbook. The URL of the episode is http://cdn.peoplemesh.net:8000/livestream.mp3

 

 

The code I use to play the files/streams is:

			audioElement.pause();
			audioElement.setAttribute('src', PCastsUrl[inEvent.index]);
			audioElement.load();
  			audioElement.play();

 

Any idea why this doesn't work on the Playbook?

Please use plain text.
Developer
Developer
LBP
Posts: 607
Registered: ‎04-29-2011
My Carrier: none

Re: Audiostream doesn't play

Hi. Can you revisit your source code to make sure you are using the right way to implement (HTML5) Audio element on the PlayBook! The easiest way it to use it in this way:

 

var audio = document.createElement('audio');
audio.src='http://cdn.peoplemesh.net:8000/livestream.mp3';
audio.controls = true;
audio.play();

// add the element to the body if needed
document.body.appendChild(audio);

You should also have a closer look to the "Supported Media Type Reference" to make sure the MP3 streaming is supported by the platform: http://docs.blackberry.com/en/smartphone_users/subcategories/?userType=1&category=Supported+Media

 


"Like" if you liked the post.
"Accept as Solution" if the post solves your question.
Please use plain text.
Contributor
linuxq
Posts: 10
Registered: ‎02-29-2012
My Carrier: O2 Germany

Re: Audiostream doesn't play

Thanks for your advice. But it still won't play. Even in the stock browser it won't play. Thus I assume it is a problem with the feed beeping not compatible.
Please use plain text.