simple-video-editorjs
v1.4.9
Published
SimpleVideo Tool for Editor.js
Downloads
657
Maintainers
Readme
Simple Video Tool
Provides Video Blocks for the Editor.js.
Works only with pasted videos and URLs and requires no server-side uploader.
Installation
Install via NPM
Get the package
npm i --save-dev simple-video-editorjs
Include module at your application
const SimpleVideo = require('simple-video-editorjs');
Download to your project's source dir
- Upload folder
dist
from repository - Add
dist/bundle.js
file to your page.
Load from CDN
You can load specific version of package from jsDelivr CDN.
https://cdn.jsdelivr.net/npm/@editorjs/simple-video-editorjs@latest
Then require this script on page with Editor.js.
<script src="..."></script>
Usage
Add a new Tool to the tools
property of the Editor.js initial config.
var editor = EditorJS({
...
tools: {
...
video: SimpleVideo,
}
...
});
Config Params
This Tool has no config params
Tool's settings
- Stretch to full-width
- Add default HTML controls for playback
- Enable autoplay and muted video.
Output data
| Field | Type | Description |
| -------------- | --------- | ------------------------------- |
| url | string
| video's url |
| caption | string
| video's caption |
| autoplay | boolean
| video will autoplay |
| muted | boolean
| video will be muted by defaul |
| controls | boolean
| video should display default controls|
| stretched | boolean
| stretch video to screen's width |
{
"type" : "video",
"data" : {
"url" : "https://paul.kinlan.me/videos/2019-11-05--test-post-video-upload-0.mp4",
"caption" : "An aweomse video",
"autoplay" : false,
"controls" : false,
"muted": false,
"stretched" : true
}
}