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

react-vidz-player

v1.1.1

Published

React-based player for vidz

Downloads

19

Readme

react-vidz-player

A simple video player built in React, leveraging vidz for the player creation.

Installation

$ npm i react-vidz-player --save

Usage

// ES2015
import VidzPlayer from 'react-vidz-player';

// CommonJS
const VidzPlayer = require('react-vidz-player');

// script
const VidzPlayer = window.VidzPlayer;

Basic implementation

const App = () => {
    <VidzPlayer mp4="./my/video.mp4"/>
};

Advanced implementation

const App = () => {
    <VidzPlayer
        autoplay
        controlsBackgroundColor="rgba(255, 0, 60, 0.7)"
        controlsFontColor="#fff"
        controlsTrackColor="red"
        loop
        mp4="./my/video.mp4"
        ogg="./my/video.ogv"
        playOnClick
        preventAutoHideControls
        theme="light"
        webm="./my/video.webm"
    />
};

Available props

Most props available are those of vidz, so check out the documentation there for the complete listing of those props (all passed to VidzPlayer will be passed to the vidz instance).

Props specific to VidzPlayer:

  • controlsBackgroundColor {string}
    • Custom color used for the background of all controls
  • controlsFontColor {string}
    • Custom color used for the color of icons and text for all controls
  • controlsTrackColor {string}
    • Custom color used for the duration and volume track in controls
  • playOnClick {boolean} defaults to false
    • Should the video toggle play / pause when the video itself is clicked
  • preventAutoHideControls {boolean} defaults to false
    • Should the video auto-hide controls while playing after a brief period of no activity from the user
  • theme {string} valid values: "light", "dark", defaults to "dark"
    • Choice of themes to apply rather than setting custom colors for background, font, and track
    • "light" is a simple reversal of colors of "dark"

Things to note

height / width are handled

vidz allows for a custom height / width parameter, and you can use those as well, however VidzPlayer tries to simplify the process for you by auto-determining the width based on whatever container it is applied in. It then also calculates the appropriate height based on the aspect ratio of the video applied to that calculated width, so that the video retains its original aspect ratio at any width. If width and / or height are provided as props they will be respected, but it likely will not be necessary unless you specifically want the video to be a different size than it's container.

UMD dependencies

If you are using the UMD version provided in dist, there are a few externals required as dependencies:

  • react
  • react-dom
  • recompose
  • vidz

All of these should be available by either CDN or dist files in their respective repos.

Development

Standard stuff, clone the repo and npm i to get the dependencies. npm scripts available:

  • build => builds the distributed JS with NODE_ENV=development and with sourcemaps
  • build-minified => builds the distributed JS with NODE_ENV=production and minified
  • compile-for-publish => runs the lint, test, transpile, dist scripts
  • dev => runs the webpack dev server for the playground
  • dist => runs the build and build-minified
  • lint => runs ESLint against files in the src folder
  • prepublish => if in publish, runs compile-for-publish
  • transpile => runs Babel against files in src to files in lib

Tests coming soon...