Hello,
I am trying to figure out how to implement video fades using new XT models running firmware (7.060), working in Brightscript.
Currently I am trying to follow the instructions on the roVideoPlayer support page (or how I would interpret it). I am trying:
preloader1 = CreateObject("roAssociativeArray")
preloader1["LoopMode"] = TRUE
preloader1["FadeInLength"] = 5000
preloader1["FadeOutLength"] = 5000
preloader1["Filename"] = "/media/3.mov"
v1.PlayFile(preloader1)
... and hoping to see 5 second fades on either end of the video - but so far I don't see any fades - the video (H264 / .mov files - standard encoding for how we have worked with Brightsigns over the years) plays back normally - but without fades.
Can you tell me how to approach this?
Maybe it is relevant that I am setting the decoder mode as follows:
vm=CreateObject("roVideoMode")
vm.SetMode("1920x1080x60p")
vm.SetDecoderMode("4K", "HD", -1, "videoplane", TRUE)
... and using two roVideoPlayer instances, that can be swapped over each other using ToFront().
Thanks!
S