jf-roku/components/data/VideoData.brs

21 lines
554 B
Plaintext
Raw Normal View History

sub setFields()
2021-07-09 20:08:32 +00:00
json = m.top.json
2021-07-09 20:08:32 +00:00
m.top.id = json.id
m.top.Title = json.name
m.top.Description = json.overview
m.top.favorite = json.UserData.isFavorite
m.top.watched = json.UserData.played
m.top.Type = "Video"
2021-07-09 20:08:32 +00:00
setPoster()
end sub
sub setPoster()
2021-07-09 20:08:32 +00:00
if m.top.image <> invalid
m.top.posterURL = m.top.image.url
else if m.top.json.ImageTags.Primary <> invalid
2022-05-22 22:41:02 +00:00
imgParams = { "maxHeight": 440, "maxWidth": 295 }
2021-07-09 20:08:32 +00:00
m.top.posterURL = ImageURL(m.top.json.id, "Primary", imgParams)
end if
2020-10-27 17:12:18 +00:00
end sub