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

videojs-yt-style

v0.1.8

Published

VideoJS CSS Skin like YT

Downloads

20

Readme

videojs-yt-style

WARNING: Highly early project. The stable version of this project has not been released (Release v1.0.0) and should not be used in production.

VideoJS Skin like YT.

Demo

This is a component to connect other supported VideoJS plugins and use to make the VIdeoJS like YT. We also improve some original VideoJS experience.

Connect to other VideoJS Plugin (Checked means support, unchecked means it will be supported in the future):

And more (You can tip me on Issues).

Table of Contents

Installation

npm install --save videojs-yt-style

Package out from NPM

git clone https://github.com/paidless/videojs-yt-style.git
cd videojs-yt-style
npm install
npm run build-offline

Now you can take build/ out to anywhere.

Usage

To include videojs-yt-style on your website or web application, use any of the following methods.

<script> Tag

This is the simplest case. Get the script in whatever way you prefer and include the plugin after you include video.js, so that the videojs global is available.

<script src="//path/to/video.min.js"></script>
<script src="//path/to/videojs-yt-style.min.js"></script>
<script>
  var player = videojs('my-video');

  player.ytStyle();
</script>

Browserify/CommonJS

When using with Browserify, install videojs-yt-style via npm and require the plugin as you would any other module.

var videojs = require('video.js');

// The actual plugin function is exported by this module, but it is also
// attached to the `Player.prototype`; so, there is no need to assign it
// to a variable.
require('videojs-yt-style');

var player = videojs('my-video');

player.ytStyle();

RequireJS/AMD

When using with RequireJS (or another AMD library), get the script in whatever way you prefer and require the plugin as you normally would:

require(['video.js', 'videojs-yt-style'], function(videojs) {
  var player = videojs('my-video');

  player.ytStyle();
});

Added Features

Bezel

Show a bezel bar in player.

Added Component

  • BezelText : bezel text element
  • BezelTextWrapper : bezel text wrapper element
  • Bezel : Control the whole bezel action

Added Component Method

You can call following method like: player.getChild('Bezel').something();.

  • getChild('Bezel').display(string) : Show specific text 0.5s

Fps

Add the fps attributes to player.

Added Player Attributes

  • fps_.fps (Type: Integer) : evaluated video fps
  • fps._certainty (Type: Integer) : evaluate certainty

Added Player Methods

  • fps(value) (Return type: Integer) : return the evaluated video fps

Added Player Events

  • fpsupdate : evaluate fps updated

Keep timetooltip in seekbar

Add a player option to keep time tooptip in seeb bar.

Original this PR.

Added Player Options

  • keepTimeTooltipInSeekBar (Type: Boolean) : Prevents the time tooltip overflow the seek bar

Progress bar padding

Add a component to progress bar, use it to grow user can hover the progress bar size.

You can use the .vjs-progress-bar-padding css class to set the style.

Size property

Add some css var of player size.

Added CSS Variables

  • --player-width (Unit: Pixel) : player width
  • --player-height (Unit: Pixel) : player height

Subtitle Manager

A better way to control subtitle.

Added Player Attributes

  • subtitles : This is a subtitle manager instance, you can found all method in source src/js/components/subtitle-manager.js.

Keep volume

Keep volume setting in localStorage.

Full window mode

Include is only full window and fullwindow toggle manager.

Added Player Options

  • alwaysEnableFullWindow (Type: Boolean) : Always has are full window button.

Added Player Methods

  • isOnlyFullWindow() (Type: Boolean) : Check if only full window is supported.

Get duration correctly

Add player method to fix live source can not get duration problem.

Added Player Methods

  • getDuration() (Type: Number) : Get source duration.

Fix progress

Fix VideoJs ProgressBar is slow when dragging with Mouse. problem: https://github.com/videojs/video.js/issues/4460

Code from: https://github.com/Pong420/videojs-plus/blob/ca74ddceb696ee53fdf934391ca9113e04e93a91/source/Components/ControlBar/Progress/Progress.js

License

UNLICENSED. Copyright (c) Ami-OS <[email protected]>