Jeroen
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2012
03:24 AM
Questions about AudioPlayer
Hi All,
I'm building an channel to play streaming radio content. I've got some questions which maybe someone can answer.
I've got a radio station with a total of 4 streams from different servers (for backup)
I'm using the "roAudioPlayer" and can't get the "SetContentList" to work. The Component Reference (Par 4.15) tells me that I need to pass an array of Content meta-data objects. But this object has over 60 attributes and it is unclear for me what attributes the roAudioPlayer uses. I tried adding one object for a radio station and setting the Attributes StreamUrls (4) and streamFormat. But it doens't work.
Is there a way to tell which attributes to use in combination with the AudioPlayer?
Thanks Jeroen
I'm building an channel to play streaming radio content. I've got some questions which maybe someone can answer.
I've got a radio station with a total of 4 streams from different servers (for backup)
I'm using the "roAudioPlayer" and can't get the "SetContentList" to work. The Component Reference (Par 4.15) tells me that I need to pass an array of Content meta-data objects. But this object has over 60 attributes and it is unclear for me what attributes the roAudioPlayer uses. I tried adding one object for a radio station and setting the Attributes StreamUrls (4) and streamFormat. But it doens't work.
Is there a way to tell which attributes to use in combination with the AudioPlayer?
Thanks Jeroen
7 REPLIES 7
Jeroen
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2012
03:43 AM
Re: Questions about AudioPlayer
Second question: it possible to show the "now Playing" information from a radio stream?
belltown
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2012
10:02 AM
Re: Questions about AudioPlayer
I believe your content list needs to be an array of content meta-data objects where each content meta-data object is an associative array containing a Url and a StreamFormat, e.g:
contentList = []
contentList.Push ({Url: "http://stream1.com/mp3", StreamFormat: "mp3"})
contentList.Push ({Url: "http://stream2.com/mp3", StreamFormat: "mp3"})
Jeroen
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2012
04:01 AM
Re: Questions about AudioPlayer
I think you're right. Currently I'm using the AddContent(stream, streamFormat) and that works.
Personally I think that Roku has got everything very well covered in there documentation. I'm kinda surprised that I can't find any information about which Meta-Data properties are used in the roAudioPlayer. Or in any other class(player). I still think I'm overlooking something...
Thanks for your answer!
Personally I think that Roku has got everything very well covered in there documentation. I'm kinda surprised that I can't find any information about which Meta-Data properties are used in the roAudioPlayer. Or in any other class(player). I still think I'm overlooking something...
Thanks for your answer!
belltown
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2012
09:15 AM
Re: Questions about AudioPlayer
"Jeroen" wrote:
I think you're right. Currently I'm using the AddContent(stream, streamFormat) and that works.
Personally I think that Roku has got everything very well covered in there documentation. I'm kinda surprised that I can't find any information about which Meta-Data properties are used in the roAudioPlayer. Or in any other class(player). I still think I'm overlooking something...
Thanks for your answer!
I agree. The SDK documentation is certainly not Roku's strong point. It's lacking in many areas. I ran into the same problems when I started. It would be nice if they at least had a table showing which meta-data properties applied to which components.
destruk
Streaming Star
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2012
10:53 AM
Re: Questions about AudioPlayer
"Jeroen" wrote:
I think you're right. Currently I'm using the AddContent(stream, streamFormat) and that works.
Personally I think that Roku has got everything very well covered in there documentation. I'm kinda surprised that I can't find any information about which Meta-Data properties are used in the roAudioPlayer. Or in any other class(player). I still think I'm overlooking something...
Thanks for your answer!
7.0 Components First Introduced in Firmware v2.9 131
7.1 roAudioMetadata 131
7.2 roImageMetadata 132
Meta Data only works for 'local files' so it's rather useless for anything streamed online.
belltown
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2012
11:57 AM
Re: Questions about AudioPlayer
"destruk" wrote:"Jeroen" wrote:
I think you're right. Currently I'm using the AddContent(stream, streamFormat) and that works.
Personally I think that Roku has got everything very well covered in there documentation. I'm kinda surprised that I can't find any information about which Meta-Data properties are used in the roAudioPlayer. Or in any other class(player). I still think I'm overlooking something...
Thanks for your answer!
7.0 Components First Introduced in Firmware v2.9 131
7.1 roAudioMetadata 131
7.2 roImageMetadata 132
Meta Data only works for 'local files' so it's rather useless for anything streamed online.
I believe the "Meta-Data" we were referring to was "3.3 Content Meta-Data".
destruk
Streaming Star
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2012
01:47 PM
Re: Questions about AudioPlayer
See? more confusion. 🙂