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

ngx-video-timeline

v0.10.16

Published

a video timeline for ng2+

Downloads

362

Readme

NgxVideoTimeline

Demo

example

samplePic

Installation

Compatibility

| Angular | Latest ngx-video-timeline compatible | | ------- | ---------------------------- | | 17 | 0.10.17 | | 16 | 0.10.16 | | 15 | 0.10.15 | | 14 | 0.10.14 | | 13 | 0.10.13 | | 12 | 0.10.12 | | 11 | 0.10.11 | | 10 | 0.10.10 | | 9 | 0.10.9 |

Getting Started

npm i ngx-video-timeline --save

or

yarn add ngx-video-timeline

Usage

Import the module into your module

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';
import { NgxVideoTimelineModule } from 'projects/timeline/src/lib/timeline.module';

@NgModule({
    declarations: [
        AppComponent
    ],
    imports: [
        BrowserModule,
        NgxVideoTimelineModule
    ],
    providers: [],
    bootstrap: [AppComponent]
})
export class AppModule { }

then use it in html

<ngx-video-timeline 
    class="canvas"
    [speed]="speed" 
    [playTime]="playTime" 
    [isPlayClick]="isPlayClick" 
    [videoCells]="videoCells" 
    [startTimeThreshold]="startTimeThreshold" 
    [endTimeThreshold]="endTimeThreshold" 
    [canvasHeight]="canvasHeight" 
    (playClick)="onPlayClick($event)"
>
</ngx-video-timeline>

in ts file

import { Component, OnInit } from '@angular/core';
import { VideoCellType } from 'projects/timeline/src/lib/timeline.component';

@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit {
    title = 'ngx-video-timeline';

    speed: number;
    canvasHeight: number;
    startTimeThreshold: number;
    endTimeThreshold: number;
    videoCells: VideoCellType[];
    playTime: Date;
    isPlayClick: boolean;

    constructor() {
        this.speed = 10;
        this.isPlayClick = false;
        this.canvasHeight = 80;
        this.startTimeThreshold = new Date().getTime() - 1 * 3600 * 1000;
        this.endTimeThreshold = new Date().getTime() + 1 * 3600 * 1000;
        this.videoCells = [];
        this.playTime = new Date();
    }

    onPlay(): void {

        this.isPlayClick = true;
        this.startTimeThreshold = new Date().getTime() - 1 * 3600 * 1000;
    }

    onPause(): void {

        this.isPlayClick = false;
        // this.endTimeThreshold = new Date().getTime() + 1 * 3600 * 1000;
    }

    onPlayClick(date: number): void {
        // console.log(new Date(date));
        // this.canvasHeight = 60;
    }


    selectedTime(date: any): void {
        this.playTime = date.value;
    }

    changeVideo(): void {
        this.videoCells = [
            {
                beginTime: new Date().getTime() - 1 * 3600 * 1000,
                endTime: new Date().getTime() + 1 * 3600 * 1000,
                style: {
                    background: '#f3e5e4'
                }
            }
        ];
    }

    ngOnInit(): void {
    }
    onDragStart(): void {
        
    }
}

API

| Name | Type | Default/Return | Description | | :------------------------------: | :------------: | :--------------------------: | :---------------------------: | | [canvasHeight] | number | 50 | Canvas height (not less than 50) | | [playTime] | number,string,Date | new Date().getTime() - 1 * 24 * 3600 * 1000 | Playback time (default: the previous day) | | [speed] | number | 1 | The video plays at twice the speed | | [forWardValue] | number | 1 | Fast forward/fast backward video | | [startTimeThreshold] | number,string,Date | new Date().getTime() - 1 * 12 * 3600 * 1000 | Left time threshold | | [endTimeThreshold] | number,string,Date | new Date().getTime() + 1 * 12 * 3600 * 1000 | Right time threshold | | [videoCells] | VideoCellType[] | VideoCellType[] | Video block (shown in different colors) | | [borderColor] | string | "#fff" | color of canvas border | | [bgColor] | string | "#fff" | color of canvas backgraound | | [bottomLineColor] | string | "rgba(0,0,0,1)" | color of the bottomLine | | [verticalBarColor] | string | "rgba(0,0,0,1)" | color of the verticalBar | | [playBarColor] | string | "#448aff" | color of the playBar | | (playClick) | any | playTime(Current timestamp) | PlayTime starts playing at speed | | (mouseUp) | any | returnTime(Current timestamp) | Returns the current time when the mouse is released | | (mouseDown) | any | returnTime(Current timestamp) | Returns the current time when the mouse is pressed |

Interfate VideoCellType

| field | name | type | required/optional | default | | :----: | :--------------: | :--------: | :-------: | :----------------: | | beginTime | The start time | number,string | required | undefined | | endTime | The end of time | number,string | required | undefined | | style | The background color | boolean | optional | VideoCellStyleType |

Interfate VideoCellStyleType

| field | name | type | required/optional | default | | :----: | :--------------: | :--------: | :-------: | :----------------: | | background | The background color | string | required | undefined |

#License ngx-video-timeline is licensed under a MIT License.