Hello Joel,
First of all, thank you very much for the answer! I think that is going to solve my problem.
I have tried to put the suggested codes in the .brs files that you mentioned, but there turnt to be a problem that I could not figure out how to solve.
I have modified the code in the AppDetailScreen.brs and added the "
and screen.contentType<>"hls" then" line and this section looked like this in the end:
Function refreshShowDetail(screen As Object, showList As Object, showIndex as Integer) As Integer
if validateParam(screen, "roSpringboardScreen", "refreshShowDetail") = false return -1
if validateParam(showList, "roArray", "refreshShowDetail") = false return -1
show = showList[showIndex]
'Uncomment this statement to dump the details for each show
'PrintAA(show)
screen.ClearButtons()
if regread(show.contentid) <> invalid and regread(show.contentid).toint() >=30 and screen.contentType<>"hls" then
screen.AddButton(1, "Resume playing")
screen.AddButton(2, "Play from beginning")
else
screen.addbutton(2,"Play")
end if
screen.SetContent(show)
screen.Show()
End Function
Do I have to delete the "screen.addButton" passages concerning "Resume" or "play from the beginning"? or do i just leave it like that. There must be something wrong because after I hadded this contenttype-code the channel would not work anymore. The one installed on the roku would not load some of the channels inside a category and after publishing it on the roku site, the channel would just crash and return to the main screen.
So i guess there are sill some lines to be changed?
🙂About your other code that removes the resume button after playback is complete...should I implement this code as well or is it not necessary since all my channels are livestreams already?
Is it possible to stream RTSP, RTMP or UDP links with the roku WITHOUT any additional WOWZA, or servers on the pc or anything?
And how do I use the meta-data listed on this site:
http://sdkdocs.roku.com/display/sdkdoc4 ... +Meta-DataCan I use them in my XML files in a pattern like <abc></abc>?
Thank you very much for your help,
Nyphur