I am trying to implement trick mode for our VoDs on Roku. I have followed their guide for HLS here: https://developer.roku.com/en-gb/docs/developer-program/media-playback/trick-mode/hls-and-dash.md
I see my playlist get updated with the EXT-X-IMAGE-STREAM-IN:
#EXTM3U
#EXT-X-VERSION:7
#EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio_0",NAME="main",DEFAULT=YES,AUTOSELECT=YES,URI="a/3000/chunklist_audio_1611173953675_1611174576175.m3u8"
#EXT-X-STREAM-INF:BANDWIDTH=3000000,CODECS="avc1.640020,mp4a.40.2",RESOLUTION=1280x720,AUDIO="audio_0"
a/3000/chunklist_1611173953675_1611174576175.m3u8
#EXT-X-IMAGE-STREAM-INF:BANDWIDTH=311040,RESOLUTION=480x270,CODECS="jpeg",URI="media_playlists/media_playlist_480x270_1611173953675_1611174576175.m3u8"
As you can see, the playlist points to media_playlists/media_playlist_480x270_1611173953675_1611174576175.m3u8
which exists with this content:
#EXTM3U
#EXT-X-TARGETDURATION:1000
#EXT-X-VERSION:7
#EXT-X-MEDIA-SEQUENCE:1
#EXT-X-PLAYLIST-TYPE:VOD
#EXT-X-IMAGES-ONLY
#EXTINF:1000.000
#EXT-X-TILES:RESOLUTION=480x270,LAYOUT=10x10,DURATION=10.000
../images/tiles_480x270_1611173953675_1611174576175_0001.jpg
#EXT-X-ENDLIST
And I've confirmed the image exists at the location pointed to above.
I'm stumped because I do not have any visibility into the requests being made by the Stream/RAF tester tool, so I do not know what request might be failing.
When I play the video on the test channel, it plays fine, so I know the HLS is working as expected. However, when I try to seek while the video is playing, the thumbnails do not show and the scrubber stays at the starting position.
Any advice would be greatly appreciated - especially if there is a way to see logging from the stream/raf testing tool!