zlplayer
TypeScript icon, indicating that this package has built-in type declarations

0.0.7 • Public • Published

zlplayer npm

HTML5 MPEG2-TS live stream player written in TypeScript.

Overview

zlplayer works by decoding MPEG2-TS stream into VideoFrame/AudioData using WebCodecs,
followed by feeding into an an HTML5 <video> element through MediaStreamTrack Insertable Streams (a.k.a. Breakout Box).

Feature

  • Playback for MPEG2-TS stream with H.264 + AAC codec transported in http(s)
  • Extremely low latency of less than 0.1 second in the best case

Installation

npm install --save zlplayer

or

yarn add zlplayer

Build

yarn
yarn build

Getting Started

<script src="zlplayer"></script>
<video id="videoElement"></video>
<script>
  var videoElement = document.getElementById('videoElement');
  var zlplayer = new window.zlplayer.Player({
    // some options
  });
  zlplayer.attachMedia(videoElement);
  zlplayer.load(/* url */).then(() => {
    videoElement.play()
  });
</script>

Readme

Keywords

Package Sidebar

Install

npm i zlplayer

Weekly Downloads

3

Version

0.0.7

License

MIT

Unpacked Size

365 kB

Total Files

99

Last publish

Collaborators

  • monyone