Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
ember-videojs
Advanced tools
Use VideoJS HTML5 video player components in your Ember project.
ember install ember-videojs
{{videojs-player src="https://vjs.zencdn.net/v/oceans.mp4" type="video/mp4" poster="https://vjs.zencdn.net/v/oceans.png"}}
{{videojs-player sources=sources}}
this.set("sources", [
{
type: "video/mp4",
src="https://vjs.zencdn.net/v/oceans.mp4"
},
{
type: "video/webm",
src="https://vjs.zencdn.net/v/oceans.webm"
},
]);
autoplay
: true|false{{videojs-player autoplay=true}}
controls
: true|false{{videojs-player controls=true}}
Plays inline for mobile Safari.
playsinline
: true|false{{videojs-player playsinline=true}}
{{!-- app/templates/components/player.hbs}}
{{videojs-player controls=false click=(action "togglePlay")}}
// app/components/player.js
actions: {
togglePlay: function(player) {
if (player.paused()) {
player.play();
} else {
player.pause();
}
}
}
width
: an integer in pixels (VideoJS doesn't support CSS style sizing)height
: an integer in pixels (VideoJS doesn't support CSS style sizing)fluid
: adds the .vjs-fluid class and will scale to fit the container and content.{{videojs-player width=640 height=320}}
{{videojs-player fluid=true}}
aspectRatio
: This option is in the form of two integers separated by a colon: for example 16:9
or 4:3
.{{videojs-player aspectRatio='16:9'}}
Use new Live UI for live streams.
liveui
: This option is a boolean{{videojs-player liveui=true}}
For more details please read official documentation https://docs.videojs.com/tutorial-live.html
Install the videojs-vr plugin
npm install --save videojs-vr
Add the import statement to your ember-cli-build.js file.
app.import('node_modules/videojs-vr/dist/videojs-vr.min.js');
app.import('node_modules/videojs-vr/dist/videojs-vr.min.js');
Add the vr-projection attribute to your component
vr-projection
: '360', 'Sphere', or 'equirectangular'{{videojs-player vrProjection="360"}}
VideoJS doesn't provide a way to interact with it's styles. Just override them in your styles.css
.
.video-js .vjs-big-play-button {};
.video-js .vjs-big-vr-play-button {};
.video-js .vjs-control-bar {};
.vjs-has-started .vjs-control-bar {};
.video-js .vjs-control {};
.vjs-icon-play:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder:before {};
.vjs-icon-play:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder:before {};
.video-js .vjs-volume-panel {};
.video-js .vjs-mute-control {};
.vjs-icon-volume-high:before, .video-js .vjs-mute-control .vjs-icon-placeholder:before {};
.video-js .vjs-progress-control {};
.video-js .vjs-progress-holder .vjs-play-progress, .video-js .vjs-progress-holder .vjs-load-progress, .video-js .vjs-progress-holder .vjs-load-progress div {};
.video-js .vjs-time-control {};
.video-js .vjs-fullscreen-control {};
.vjs-icon-fullscreen-enter:before, .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {};
.vjs-icon-subtitles, .video-js .vjs-subtitles-button .vjs-icon-placeholder, .video-js .vjs-subs-caps-button .vjs-icon-placeholder, .video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder {};
.vjs-icon-subtitles:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before, .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before {};
/* Uses inline styles on the grandchild */
.vjs-text-track-display {};
Add a text track to your video in the WebVTT
format.
textTrack
: [track URL]{{videojs-player textTrack="captions-mi.vtt"}}
Add multiple tracks or configure the text track options in your component.
{{videojs-player textTracks=textTracks}}
this.set("textTracks", [
{
kind: "captions",
label: "Maori",
language: "mi",
src="captions-mi.vtt",
type="text/vtt"
},
{
kind: "captions",
label: "English",
language: "en",
src="captions-en.vtt",
type="text/vtt"
}
]);
See the Contributing guide for details.
This project is licensed under the MIT License.
FAQs
Use VideoJS components in your Ember project.
The npm package ember-videojs receives a total of 294 weekly downloads. As such, ember-videojs popularity was classified as not popular.
We found that ember-videojs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.