npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@api.video/player-analytics

v1.0.10

Published

api.video player analytics module

Downloads

47

Readme

badge   badge   badge npm ts

api.video is the video infrastructure for product builders. Lightning fast video APIs for integrating, scaling, and managing on-demand & low latency live streaming features in your app.

Table of contents

Project description

Javascript module to manually call the api.video analytics collector.

This is useful if you are using a video player for which we do not yet provide a ready-to-use monitoring module.

If you use one of the following video player, you should rather use the associated packaged monitoring module:

| Player | monitoring module | | -------- | ------------------------------------------------------------------------------------------- | | video.js | @api.video/api.video-videojs-analytics | | hls.js | @api.video/api.video-hlsjs-analytics |

This module is compatible with React Native.

Getting started

Installation

Method #1: requirejs

If you use requirejs you can add the module as a dependency to your project with

$ npm install --save @api.video/player-analytics

You can then use the module in your script:

var { PlayerAnalytics } = require('@api.video/player-analytics');


const playerAnalytics = new PlayerAnalytics({
    ...options // see below for available options
});

Method #2: typescript

If you use Typescript you can add the SDK as a dependency to your project with

$ npm install --save @api.video/player-analytics

You can then use the SDK in your script:

import { PlayerAnalytics } from '@api.video/player-analytics'

const playerAnalytics = new PlayerAnalytics({
    ...options // see below for available options
});

Method #3: imple include in a javascript project

Include the SDK in your HTML file like so:

<head>
    ...
    <script src="https://unpkg.com/@api.video/player-analytics" defer></script>
</head>

Then, once the window.onload event has been trigered, instanciate the module with new PlayerAnalytics():

<script type="text/javascript">
    var playerAnalytics = new PlayerAnalytics("#target", { 
        ...options // see below for available options
    });
</script>

Documentation

Instanciation options

The analytics module constructor takes a PlayerAnalyticsOptions parameter that contains the following options:

| Option name | Mandatory | Type | Description | | ------------------: | --------- | ------------------------------------- | ------------------------------------------------------------------------------------------------------------ | | mediaUrl | yes | string | url of the media (eg. https://cdn.api.video/vod/vi5oDagRVJBSKHxSiPux5rYD/hls/manifest.m3u8) | | userMetadata | no | { [name: string]: string }[] | object containing metadata (see Full example below) | | sequence | no | {start: number; end?: number;} | if only a sequence of the video is going to be played | | onSessionIdReceived | no | (sessionId: string) => void | callback to be called once the session id is reveiced |

Once the module is instanciated, the following methods have to be called to monitor the playback events.

Module methods

play(): Promise<void>

method to call when the video starts playing for the first time (in the case of a resume after paused, use resume())

resume(): Promise<void>

method to call when the video playback is resumed after a pause

ready(): Promise<void>

method to call once the player is ready to play the media

end(): Promise<void>

method to call when the video is ended

seek(from: number, to: number): Promise<void>

method to call when a seek event occurs, the from and to parameters are mandatory and should contains the seek start & end times in seconds

pause(): Promise<void>

method to call when the video is paused

destroy(): Promise<void>

method to call when the video player is disposed (eg. when the use closes the navigation tab)

updateTime(time: number): Promise<void>

method to call each time the playback time changes (it should be called often, the accuracy of the collected data depends on it)