I've set up an HTML5 player (using video.js) which plays and advertisement video before the video itself.
Problem comes on iPhone devices, when Safari is calling the native iOS player to play through the video with seeking controls wihich permits the user to easily skip ads.
I've applied the attribute "playisinline" and "webkit-playisinline" into the tag and this is working ONLY on iOS 10 (by the way, you can apply this natively on next update), but on iOS 9 it still shows native playaer with seeking possibilities.
I've tryied to use this as suggested here elsewhere but it is very buggy and giving conflicts in my player implementation.
I just need to control the fullscreen native player and avoid seeking by resetting the current playback time into that, but I can't find how to do this.
Any help appreciated.