A powerful Strapi plugin to easily manage your videos and integrate them in your project
A powerful Strapi plugin to easily manage your videos and integrate them in your project.
This plugin provides the ability to upload content via a file to upload to api.video.
We're available on the Strapi Marketplace.
(Use yarn to install this plugin within your Strapi project (recommended). Install yarn with these docs.)
yarn add @api.video/strapi-uploader-plugin@latest
After successful installation you've to re-build your Strapi instance. To archive that simply use:
yarn build
yarn develop
or just run Strapi in the development mode with --watch-admin
option:
yarn develop --watch-admin
The api-video-uploader plugin should appear in the Plugins section of Strapi sidebar after you run app again.
As a next step you must configure your the plugin by the way you want to. See Configuration section.
All done. Enjoy 🎉
api.video
Complete installation requirements are exact same as for Strapi itself and can be found in the documentation under Installation Requirements.
Minimum environment requirements
>=14.19.1 <=18.x.x
>=6.x.x
In our minimum support we're following official Node.js releases timelines.
Supported Strapi versions:
This plugin is designed for Strapi v4 and is not working with v3.x.
We recommend always using the latest version of Strapi to start your new projects.
In order for this plugin to communicate with api.video, a configuration needs to be set for the plugin before it can be used.
With your Api Key, navigate to the Settings view within Strapi and click the "General" section under API.VIDEO UPLOADER.
On this view, enter your Api Key and click the Save button.
To resolve Content Security Policy directive issue and to visualize the thumbnail and the video, we need to configure external ressource like embed.api.video
and cdn.api.video/vod/
. Modify the middlewares.js
file like below:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// config/middlewares.js
module.exports = ({ env }) => [
'strapi::errors',
{
name: 'strapi::security',
config: {
contentSecurityPolicy: {
useDefaults: true,
directives: {
'connect-src': ["'self'", 'https:'],
'img-src': ["'self'", 'data:', 'blob:', 'embed.api.video', 'cdn.api.video/vod/'],
'frame-src': ["'self'", 'data:', 'blob:', 'embed.api.video'],
upgradeInsecureRequests: null,
},
},
},
},
'strapi::cors',
'strapi::poweredBy',
'strapi::logger',
'strapi::query',
'strapi::body',
'strapi::favicon',
'strapi::public',
]
With the Community Edition of Strapi, any user with the role of super administrator can configure and use the plugin.
With Strapi Enterprise the permissions can be fine tuned according to the role of users. This is done in the Roles view in the Administration Panel.
By default we send the value Strapi
as Upload source
to keep track. This value is set by default and can't be changed.
Contributions, issues and feature requests are welcome!
If you encounter an error or have questions, please feel free to file inquiries on the Issues page for @api.video/strapi-uploader-plugin
.
npm install @api.video/strapi-uploader-plugin
Check out the available plugin resources that will help you to develop your plugin or provider and get it listed on the marketplace.