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

lwe-media-chrome

v0.4.0

Published

Custom elements (web components) for making audio and video player controls that look great in your website or app.

Downloads

6

Readme

<media-chrome>

Your media player's dancing suit. :man_dancing:

Fully customizable media player controls using web components (native custom elements).

  • [x] Compatible with any javascript framework (React, Angular, Svelte, etc.)
  • [x] Compatible with the <video> and <audio> elements and a lot of players (YouTube, HLS.js, and more)
  • [x] Simple HTML to add/remove controls
  • [x] Simple CSS to style the controls

From Mux and the creator of Video.js.

Video Example

<script type="module" src="https://unpkg.com/[email protected]"></script>

<media-controller>
  <video
    slot="media"
    src="https://stream.mux.com/DS00Spx1CV902MCtPj5WknGlR102V5HFkDe/high.mp4"
    crossorigin
  >
    <track label="thumbnails" default kind="metadata" src="https://image.mux.com/DS00Spx1CV902MCtPj5WknGlR102V5HFkDe/storyboard.vtt">
  </video>
  <media-control-bar>
    <media-play-button></media-play-button>
    <media-mute-button></media-mute-button>
    <media-volume-range></media-volume-range>
    <media-time-range></media-time-range>
    <media-pip-button></media-pip-button>
    <media-fullscreen-button></media-fullscreen-button>
  </media-control-bar>
</media-controller>

Results (Try the CodePen example)

Audio Example

<script type="module" src="https://unpkg.com/[email protected]"></script>

<media-controller audio>
  <audio
    slot="media"
    src="https://file-examples-com.github.io/uploads/2017/11/file_example_MP3_700KB.mp3"
  ></audio>
  <media-control-bar>
    <media-play-button></media-play-button>
    <media-time-display show-duration></media-time-display>
    <media-time-range></media-time-range>
    <media-playback-rate-button></media-playback-rate-button>
    <media-mute-button></media-mute-button>
    <media-volume-range></media-volume-range>
  </media-control-bar>
</media-controller>

Results (Try the CodePen example)

Advanced Usage

For a more in depth discussion of working with <media-controller/>, including more complex controls layouts, check out the docs.

Quick Demo

Adding controls to a video element

Just HTML. No javascripting required.

Add controls to the media

Using/installing

<media-chrome> is only packaged as a javascript module (es6), which is supported by all evergreen browsers and Node v12+. The package includes all of the existing media controls.

Option 1: Hosted

Load the module in the <head> of your HTML page. Note the type="module", that's important.

Modules are always loaded asynchronously by the browser, so it's ok to load them in the head :thumbsup:, and best for registering web components quickly.

<script type="module" src="https://unpkg.com/[email protected]"></script>

Option 2: Bundled via npm

npm install media-chrome --save

Include in your app javascript (e.g. src/App.js)

import 'media-chrome';

This will register the custom elements with the browser so they can be used as HTML.

Using in your HTML

The <media-controller> is the star of the show. It handles the communication between control elements and the media. Start by wrapping your media element with a <media-controller>, and adding slot="media" to your video or audio tag, or other compatible player.

<media-controller>
  <video slot="media" src="https://stream.mux.com/DS00Spx1CV902MCtPj5WknGlR102V5HFkDe/high.mp4"></video>
</media-controller>

After that, each control element can be used independently. When using outside of a <media-controller> element, a control needs to be told which media controller it's associated with via the media-controller attribute or property.

<media-controller id="myController">
  <video slot="media" src="https://stream.mux.com/DS00Spx1CV902MCtPj5WknGlR102V5HFkDe/high.mp4"></video>
  <media-play-button></media-play-button>
</media-controller>

<media-play-button media-controller="myController"></media-play-button>

Customizing the controls

Use HTML to add or remove any of the controls. Then you can use CSS to style the controls as you would other HTML elements.

<media-controller>
  <video
    slot="media"
    src="https://stream.mux.com/DS00Spx1CV902MCtPj5WknGlR102V5HFkDe/high.mp4"
  ></video>
  <media-control-bar>
    <media-play-button></media-play-button>
    <media-mute-button></media-mute-button>
    <media-volume-range></media-volume-range>
    <media-time-range></media-time-range>
    <media-pip-button></media-pip-button>
    <media-fullscreen-button></media-fullscreen-button>
  </media-control-bar>
</media-controller>

Included elements

| Element | Description | |------------------------------|------------------------------------------------------------------------------------------------------| | <media-controller> | Wraps controls and the media element, and handles communication between them. (docs) | | <media-control-bar> | Optional controls container to help align the controls in the standard fashion. | | <media-play-button> | Toggle media playback | | <media-mute-button> | Toggle the sound. The icon responds to volume changes and acts as part of the typical volume control. | | <media-volume-range> | Change the volume of the sound. | | <media-time-range> | See how far the playhead is through the media duration, and seek to new times. | | <media-time-display> | Show the time of the playhead.Options: <media-time-display remaining> Show as remaining time <media-time-display show-duration> Also show the duration after a slash. Ex: 1:00 / 2:00 | | <media-duration-display> | Show the duration of the media | | <media-fullscreen-button> | Toggle fullscreen viewing | | <media-pip-button> | Toggle picture-in-picture mode of the video | | <media-playback-rate-button> | Change the speed of playback | | <media-seek-backward-button> | Jump back 30 seconds in the media | | <media-seek-forward-button> | Jump ahead 30 seconds in the media | | <media-captions-button> | Show/disable captions (if no captions are available, will fallback to subtitles by default unless no-subtitles-fallback attribute is set) | | More to come | Requests and contributions welcome |

Extras

Extras are not shipped with the core library, but can be imported as-needed by importing the element from the dist direcotry, for example:

import 'media-chrome/dist/extras/media-clip-selector'
<script type="module" src="https://unpkg.com/[email protected]/dist/extras/media-clip-selector"></script>

| Element | Description | |------------------------------|------------------------------------------------------------------------------------------------------| | <media-clip-selector> | Create selector handles that allow a user to select a sub-section of the media element. |

Compatible players

Media Chrome will work with any HTML element that exposes the same API as HTML Media Elements (<video> and <audio>).

Some "players" add on to existing video and audio elements, so nothing more is needed to work with Media Chrome. Other players need an additional custom element to translate the player's API to match the HTMLMediaElement's API.

| "player" | Notes | |-----------------------------------------------------------|-------------------------------------------------------------------------------------------------------------| | HLS.js | Nothing else needed. Can also use the <hls-video> element. | | dash.js | Nothing else needed. | | Shaka Player | Nothing else needed. | | YouTube | Requires the <youtube-video> element. |

Be sure to include the slot="media" attribute in the player's tag.

<media-controller>
  <youtube-video
    slot="media"
    src="https://www.youtube.com/watch?v=rubNgGj3pYo"
  >
  </youtube-video>
</media-controller>

Why?

More often than not web designers and developers just use the default media player controls, even when creating a beautiful custom design theme. It's hard not to.

  • Web browsers have built-in media controls that can't easily be customized and look different in every browser.
  • Social sites like Youtube, Vimeo, and SoundCloud only let you customize small details of the player, like primary button color.
  • Media controls are complex and hard to build from scratch. Open source players like Video.js and JW Player help, but require you to learn proprietary JS APIs, and can be difficult to use with popular Javascript frameworks.

It should be easier... <media-chrome> is an attempt at solving that.

Why now?

Web components. @heff spoke about the potential of web components for video at Demuxed 2015, and again in 2020. They allow us to extend the browser's base HTML functionality, meaning we can now build media player controls as simple HTML tags that:

  • Can be used like any native HTML tag in HTML, Javascript, and CSS (unleash your designer)
  • Are compatible by default with Javascript frameworks (React, Angular, Svelte)
  • Can be used across players when using multiple in the same site, e.g Youtube & <video>. (Could even be used by players as their own built-in controls)

Other demos

Use media-clip-selector to select segments of a video

media-clip-selector is a built-in component that can build a UI for selecting portions of your media.

Listen for the update event on the element to get the selected start and end timestamps. Full example in examples/clip-selector.html.

media clip selector example