Roku OS 7.6 doe not play icecast audio Stream under SceneGraph API

Ever since my ROKU devices have been upgraded to ROKU OS 7.6 my IceCast MP3 audio stream no longer play. I am developing my channel using SceneGraph API to play live audio stream (MP3). The player indicates it is playing but no sound is hear. Can someone help me resolve this issue?

Thanks,
SerpoX

Could any one using ROKU os 7.6 try this code using SceneGraph API to see if audio stream works? After upgrading to ROKU OS Ver. 7.6, It stopped working. The player shows it is playing however, no audio is heard.

m.audio = createObject(“RoSGNode”, “Audio”)
m.audiocontent = createObject(“RoSGNode”, “ContentNode”)
m.audiocontent.title = “Audio Node”
m.audiocontent.url = “http://ca2.radioboss.fm/proxy/musicaex?mp=/stream
m.audiocontent.streamformat =“mp3”
m.audio.content = m.audiocontent
m.audio.control = “play”

Thank you for your help.

Ok. I found the problem. The changes made to the OS 7.6 seamed to affect the way the SceneGraph API addresses video and audio components when used at the same time. The Video component was muted hence the Audio component was muted as well. I guess the engine that handles Video and Audio is the same. Thank you ROKU engineers for all tips. Not!!!