Are you saying the code after “else if msg.isPlaybackPosition()” never gets executed, or just that the msg.getMessage() returns an empty string for the playback position event? I haven’t seen a problem with the isPlaybackPosition() function, but I don’t bother printing out the getMessage() string.
Well I added your print after my “if type(msg) = “roVideoScreenEvent”” and sure enough msg.getMessage() returns an empty string, but the msg.isPlaybackPostion() still works properly. Maybe the problem is in your reg. functions? Did you try to add a print after the “if msg.isPlaybackPostion()” statement?
isPlaybackPosition() continues to work properly in the current release. We have many channels that use this mechanism to successfully implement “resume” functionality.
I’m using code based on the simplevideoplayer example and I"m not getting any isplaybackposition events. The only difference is I’m feeding in mp4’s from Ooyala in an array of various framerates.
“jbrave” wrote:
I’m using code based on the simplevideoplayer example and I"m not getting any isplaybackposition events. The only difference is I’m feeding in mp4’s from Ooyala in an array of various framerates.
Are you calling SetPositionNotificationPeriod() on your video screen when you set it up? I notice the simplevideoplayer sample does not have that call, which would cause the isPlaybackPosition() event to never be raised.