0.1.60 • Published 4 months ago

skara-player v0.1.60

Weekly downloads
-
License
MIT
Repository
-
Last release
4 months ago

Skara Player

A customizable, flexible video player for the modern web

Installation

npm install @skara-live/skara-player

Usage

Usage in Javscript application

import SkaraPlayer from "@skara-live/skara-player"
import "@skara-live/skara-player/dist/index.css"
const cfg = {
  src: "http://amssamples.streaming.mediaservices.windows.net/634cd01c-6822-4630-8444-8dd6279f94c6/CaminandesLlamaDrama4K.ism/manifest(format=m3u8-aapl)",
  theme: {
     colors: {
       primary: "#fc0000",
       secondary: "#ffffff",
     },
     spacing: {
       margin: "4px",
       padding: "20px"
     }
   }
}
const player = new SkaraPlayer("player", cfg)
player.start();

player.on('metadataloaded', () => {
  console.log("loaded metadata")
})

Usage in react.js or next.js application

import SkaraPlayer, { PlayerConfig } from "@skara-live/skara-player";
import React from "react";

class Player extends React.Component {
  private player: SkaraPlayer | null;
  constructor(public props: PlayerConfig) {
    super(props);
    this.player = null;
  }

  componentDidMount() {
    this.player = new SkaraPlayer("player", this.props);
    this.player.start();
    window.dispatchEvent(new Event("load", { bubbles: true }))
  }

  componentWillUnmount() {
    this.player && this.player.dispose();
  }

  render(): React.ReactNode {
    return (
      <div id="player" style={{ width: "100%", height: "100%" }}></div>
    )
  }
}

export default Player;
0.1.60

4 months ago

0.0.60

4 months ago

0.0.59

4 months ago

0.0.58

4 months ago

0.0.46

4 months ago

0.0.47

4 months ago

0.0.51

4 months ago

0.0.52

4 months ago

0.0.53

4 months ago

0.0.54

4 months ago

0.0.55

4 months ago

0.0.56

4 months ago

0.0.57

4 months ago

0.0.50

4 months ago

0.0.48

4 months ago

0.0.49

4 months ago

0.0.40

4 months ago

0.0.41

4 months ago

0.0.42

4 months ago

0.0.43

4 months ago

0.0.44

4 months ago

0.0.45

4 months ago

0.0.37

4 months ago

0.0.38

4 months ago

0.0.39

4 months ago

0.0.31

4 months ago

0.0.32

4 months ago

0.0.33

4 months ago

0.0.34

4 months ago

0.0.35

4 months ago

0.0.36

4 months ago

0.0.20

4 months ago

0.0.21

4 months ago

0.0.22

4 months ago

0.0.23

4 months ago

0.0.24

4 months ago

0.0.25

4 months ago

0.0.17

4 months ago

0.0.18

4 months ago

0.0.19

4 months ago

0.0.30

4 months ago

0.0.26

4 months ago

0.0.27

4 months ago

0.0.28

4 months ago

0.0.29

4 months ago

0.0.10

4 months ago

0.0.11

4 months ago

0.0.12

4 months ago

0.0.13

4 months ago

0.0.14

4 months ago

0.0.15

4 months ago

0.0.9

4 months ago

0.0.16

4 months ago

0.0.8

4 months ago

0.0.7

4 months ago

0.0.6

4 months ago

0.0.5

5 months ago

0.0.4

5 months ago

0.0.3

5 months ago

0.0.2

5 months ago

0.0.1

5 months ago