बिबरन
OVHcloud Video Center wordpress plugin lets you upload, manage, and embed videos to the OVHcloud Video Center platform — all without leaving WordPress.
Key features:
- Upload videos with a progress bar directly from the admin dashboard.
- Manage videos — list, search, edit titles & tags, and delete from a card-based grid.
- Embed videos using shortcodes or the Gutenberg block editor.
- Classic Editor support — TinyMCE toolbar button for easy shortcode insertion.
- Responsive player — iframe embeds that adapt to any theme.
- Multipart upload — files larger than 50 MB are uploaded using the multipart protocol for reliability.
- Secure — nonce verification, capability checks, input sanitization, and masked API key storage.
Shortcodes:
[ovhcloud_vc_gallery]— Displays a YouTube-style mosaic of video poster thumbnails. Clicking a thumbnail opens the video in a modal player.[ovhcloud_vc_video id="vod_xxx"]— Embeds a single video player.
Gutenberg Block:
The “OVHcloud Video Center” block provides a visual step-by-step editor experience:
- Choose an orientation (horizontal or vertical).
- Pick a video from a poster grid or configure a filtered video list.
- Live preview via server-side rendering.
Manual installation
- Upload the
ovhcloud-video-centerfolder towp-content/plugins/. - Build the Gutenberg block (requires Node.js 18+):
cd wp-content/plugins/ovhcloud-video-center/blocks/ovhcloud-video-center && npm install && npm run build - Activate the plugin through the Plugins menu in WordPress.
- Go to OVHcloud Video Center API Settings and enter your API Key and Space ID.
- Click Test Connection to verify your credentials.
Source Code
The full uncompressed source code for the Gutenberg block (including JSX and CSS) is located in the blocks/ovhcloud-video-center/src/ directory of this plugin.
The compiled/minified files in blocks/ovhcloud-video-center/build/ are generated from that source using the @wordpress/scripts build tool.
To rebuild from source:
- Ensure Node.js 18+ and npm are installed.
- Navigate to
blocks/ovhcloud-video-center/. - Run
npm installto install dependencies. - Run
npm run buildto generate the production build.
The public source code repository is available at:
https://github.com/ovh/ovhcloud-video-center-wordpress-plugin
External Services
This plugin relies on the OVHcloud Video Center third-party service to manage and deliver video content. The OVHcloud Video Center API is required for the plugin to function.
What the service is used for
The OVHcloud Video Center API is used to upload, list, edit, delete, and embed videos hosted on OVHcloud’s video platform.
What data is sent and when
- API Key — sent with every API request for authentication.
- Video files — sent when you upload a video from the WordPress admin dashboard.
- Video metadata (titles, tags) — sent when you create or edit a video.
- Requests to list or delete videos — sent when you browse or manage videos from the admin.
- Embed requests — when a visitor loads a page containing a video embed, their browser requests the video player iframe from OVHcloud’s embed servers (e.g.
embed.eu.videocenter.ovh.net).
The API endpoint is configurable in the plugin settings (default: https://api.eu.videocenter.ovh.net). No end-user personal data is collected or transmitted by this plugin beyond standard browser requests for the embedded player.
Service provider
This service is provided by OVHcloud:
Blocks
This plugin provides 1 block.
- OVHcloud Video Center Embed a single video or a video gallery from OVHcloud Video Center.
FAQ
-
Where do I get my API Key and Space ID?
-
You can find them in your OVHcloud Video Center dashboard. The API Key is used for authentication and the Space ID identifies your video workspace.
-
What video formats are supported?
-
Almost all formats are supported since it relies on ffmpeg.
-
What happens with large files?
-
Files larger than 50 MB are automatically uploaded using the multipart upload protocol, which splits the file into parts for more reliable delivery.
-
Yes. Use
[ovhcloud_vc_gallery tags="sport,music"]to display only videos matching specific tags (up to 5). -
Can I control the player behaviour?
-
Yes. The
[ovhcloud_vc_video]shortcode supports these parameters:autoplay="true"— auto-start playbackloop="true"— loop the videomute="true"— start mutedhide_title="true"— hide the title overlayhide_controls="true"— hide player controls
These are also available as toggles in the Gutenberg block sidebar.
-
What roles can manage videos?
-
Only users with
administratororeditorroles can upload, edit, and delete videos.
समीक्षा
There are no reviews for this plugin.
Contributors & Developers
“OVHcloud Video Center” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “OVHcloud Video Center” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
0.0.1
- Initial release.
- Video upload with two-step flow (create VOD + upload to pre-signed URL).
- Multipart upload for files > 50 MB.
- Admin pages: All Videos, Add Video, API Settings.
- Shortcodes:
[ovhcloud_vc_gallery]and[ovhcloud_vc_video]. - Gutenberg block with orientation picker, video selector, and live preview.
- TinyMCE button for classic editor shortcode insertion.
- Player embed parameters: autoplay, loop, mute, hide_title, hide_controls.