IRoad
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2013
10:15 AM
RADIO
Hi,
I want integrate on my channel a radio live station as NPR, someone can help me to understand format etc.
Thanks,
F
I want integrate on my channel a radio live station as NPR, someone can help me to understand format etc.
Thanks,
F
1 REPLY 1

RokuJoel
Binge Watcher
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2013
10:49 AM
Re: RADIO
using roaudioplayer:
you can also use HLS audio:
HLS should work with AAC audio streams, and mp3 on firmware 4.x or later.
- Joel
song={}
song.streamformat="mp3"
song.url="http://myshoutcastserver:port/"
' radio won't stream without trailing slash
audioplayer=createobject("roaudioplayer")
audioplayer.addcontent(song)
audioplayer.play()
you can also use HLS audio:
song.streamformat="hls"
song.url="http://mywowzaserveraddress/myradiostream.m3u8"
HLS should work with AAC audio streams, and mp3 on firmware 4.x or later.
- Joel