HTML5 Native Video Test

Platform: Native HTML5 <video> Element

Testing: Native video element detection and event tracking

Video 1: Big Buck Bunny (MP4)

Source: Google Cloud Storage (Public Sample)

Video 2: Sintel Trailer (WebM)

Source: Blender Foundation

Detection Information

Native HTML5 videos are detected by scanning the DOM for <video> elements.

SDK Detection: Scans for native <video> elements in the DOM. Unlike platform-specific players, HTML5 videos don't have global objects - detection is purely DOM-based.

Native Video Events

HTML5 video elements emit standard media events:

video.addEventListener('play', () => console.log('Play'));
video.addEventListener('pause', () => console.log('Pause'));
video.addEventListener('ended', () => console.log('Ended'));
video.addEventListener('timeupdate', () => console.log('Progress'));