kyu
10 years agoVisitor
video position automatically rolls back after seek is set
Hello, I am writing a custom video player using "Video" node https://sdkdocs.roku.com/display/sdkdoc/Video and I am running into a weird issue.
So I am capturing the fastforward/rewind key and moving the position of the video when those keys are pressed. But every time I set video.seek to a certain number, say 20. After the video is resumed, I found out that video.position is rollbacked automatically to like 19. I also have a timer to show the current time. So my timer will be like 20, 19, 20, 21, etc. I don't know why this auto rollback is happening and I can't google anything userful. So I am here hoping I could get some help. Thank you!
I also tried to set seek to a float like this
So I am capturing the fastforward/rewind key and moving the position of the video when those keys are pressed. But every time I set video.seek to a certain number, say 20. After the video is resumed, I found out that video.position is rollbacked automatically to like 19. I also have a timer to show the current time. So my timer will be like 20, 19, 20, 21, etc. I don't know why this auto rollback is happening and I can't google anything userful. So I am here hoping I could get some help. Thank you!
I also tried to set seek to a float like this
m.video.seek = cdbl(20)but it didn't help.