Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

castable-video

Package Overview
Dependencies
Maintainers
3
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

castable-video

Cast your video element to the big screen with ease!

  • 0.4.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
40K
decreased by-59.55%
Maintainers
3
Weekly downloads
 
Created
Source

is="castable-video"

Cast your video element to the big screen with ease!

The lightweight CastableVideoElement class extends the native HTMLVideoElement API and adds casting functionality to any video element. The API was designed to have the feel of a native browser API similar to the other screen presentation API's.

It was primarily built for use in Media Chrome but it works great with any custom video controls as you can see in the example.

<script src="https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1"></script>
<script type="module" src="https://cdn.jsdelivr.net/npm/castable-video"></script>

<video
  id="castable"
  is="castable-video"
  src="https://stream.mux.com/DS00Spx1CV902MCtPj5WknGlR102V5HFkDe/high.mp4"
></video>

<button onclick="window.castable.play()">Play</button>
<button onclick="window.castable.pause()">Pause</button>
<button onclick="window.castable.requestCast()">Request Cast</button>
<button onclick="window.CastableVideoElement.exitCast()">Exit Cast</button>
<script>
  window.castable.addEventListener('castchange', function (event) {
    console.log(event.type, event.detail);
  });
</script>

API

Methods

  • video.requestCast(options): open the browser casting menu. Options:
    • receiverApplicationId: defaults to Chromecast default receiver.
    • autoJoinPolicy ('ORIGIN_SCOPED')
    • androidReceiverCompatible (false): if true enables Cast Connect.
    • language ('en-US')
    • resumeSavedSession (false)
  • CastableVideoElement.exitCast(): stop casting right away.

Properties

  • CastableVideoElement.castElement: the current video element being cast.
  • CastableVideoElement.castEnabled: true when the Cast SDK is available.

Events

  • castchange: fires when cast status changes. e.g. cast device detected.
  • entercast: fires when starting casting.
  • leavecast: fires when stopping casting.

e.g. video.addEventListener('entercast', () => {})

Attributes

  • cast-src: if Chromecast requires a different source than the one loaded.
    For example this would be needed if video src is a blob when using MSE.
  • cast-stream-type: add <video cast-stream-type="live"> for live streams.
  • cast-content-type: required if Chromecast can't derive the content type from the source.

Keywords

FAQs

Package last updated on 15 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc