
Can't start MP4 video at 10 seconds in iOS using default play button
We have the MP4 video autostarting at 10 seconds everywhere except iOS using this code...
jwplayer().onPlay(function() {
jwplayer().seek(10);
}
});
In iOS we know autostart does not work. But after the video loads, when we hit the default play button (the one in the video) the video starts at 0 and not 10. Shouldn't the above code make it start at 10?
I'm hoping it's something very simple. Logic says this code should work.