In Brightcove documentation, they mention ENTER_FULLSCREEN and EXIT_FULLSCREEN events.
I couldn't find those events in the 'brightcove.api.events.ExperienceEvent' object. I had to use browsers full screen events instead:
jQuery(document).on('webkitfullscreenchange mozfullscreenchange fullscreenchange MSFullscreenChange',fullScreenChangeHandler);
I feel it's a hack, because Brightcove documentation states they do support player fullscreen events. Besides, on browser fullscreen event, I don't know if the video player entered or exited the full screen mode.
Is there any videoplayer full screen events for Brightcove HTML5 player ?