After modifying the MEjs demo player, I successfully enabled OGG playback in IE/Safari browsers by incorporating the Cortado Java applet.
Although I got play/pause functionality working, applet.currentTime
and applet.duration
proved to be effective alternatives despite getPlayPosition()
not providing the expected result as per the documentation.
My attempt to link these functionalities with the current position indicators on the mejs player encountered a stumbling block. The setCurrentTime
method triggered a
DOM Exception: InVALID_STATE_ERR (11)
in IE, leading to similar errors in Safari. It appears that the targeted object is no longer accessible?
The provided code allows for playing and pausing, displaying seconds/total time in the console (F12 tools need to be enabled in IE). Is there a recommended approach to integrate this with the play bar?
<!DOCTYPE html>
<html>
...
... <!-- Code continues here -->
...
</html>
This implementation utilizes MeJS 2.10.3 version.