0.0.1 • Published 2 years ago

@eyevinn/safari-bitrate-monitor v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Safari Bitrate Monitor

A small package to monitor buffering and dropped frames on the video element, reporting it back as state updates into a sent in callback.

Simple Usage

  import { SafariBitrateMonitor } from "@eyevinn/safari-bitrate-monitor";

  const videoElement = document.querySelector("video");
  
  function handler = (qualityLevel) => {
    console.log(`bitrate changed –>`, qualityLevel);
  };  
  const src = ""; //HLS Manifest url
  
  new SafariBitrateMonitor({
    videoElement,
    hlsManifestUrl: src,
    handler
  });

Quality Object

export interface IQualityLevel {
  bitrate: number;
  width: number;
  height: number;
}

About Eyevinn Technology

Eyevinn Technology is an independent consultant firm specialized in video and streaming. Independent in the sense that we are not commercially tied to any platform or technology vendor.

At Eyevinn, every software developer consultant has a dedicated budget reserved for open source development and contribution to the open source community. This gives us room for innovation, team building and personal competence development. And also gives us as a company a way to contribute back to the open source community.

Want to know more about Eyevinn and how it is to work here. Contact us at work@eyevinn.se!