Detailed WordPress Tutorial Video Explaining configuration, watermark, player customization. More details and text explanation after the video. WordPress is one of the fastest ways to build a working website. WordPress and its themes and plugins are used by developers to create truly awesome websites with minimal effort. Many users combine our secure video streaming service with their video membership sites built on WordPress. Here we explain how to add the VdoCipher video player to your site using the VdoCipher WordPress plugin. With the VdoCipher WordPress video hosting plugin, you can stream videos on your WordPress site with the best…
Using VdoCipher
57 Video Hosting Features for Video Platform
We list 57 video hosting features that VdoCipher provides for securing videos from piracy, ensuring smooth playback of videos, and managing videos in bulk via dashboard and API. The features are categorized into various segments for better clarity. Respective tutorial or documentation is linked with each feature. Table of Contents: Security Features Video Player Features AWS Global CDN Hosting Features Dashboard, Integration, API, SDK Features Important FAQs Security features for video hosting Google Widevine DRM Encryption- Protect video downloads with Netflix like security in Desktop and Android via Widevine DRM encryption. Vdocipher video hosting is actually encrypted video playback ,…
Video Management details on VdoCipher Dashboard
At VdoCipher we are committed to building the best platform for hosting premium content. While our security features ensure that our secure video hosting beats all competition, we have also made our platform intuitive and easy to use. Here you can find our tutorial videos on upload/import and various other features in detail. Detailed tutorial videos are included below - Upload/Import + Embed overview Dashboard features & video setting details Multi-User addition to account & permission levels Adding more accounts/projects to same dashboard Get all videos data in csv (title, id, status, time added) Generating video page url to share…
Redirected: PHP sample video upload from browser to VdoCipher
[This article is based on API v2 as documented here.] The Upload API workflow and overview can be found here. Please find below a sample code for enabling video upload from your PHP website's users. Note that this is sample code and you will need to configure it according to the controller-view structure in your application. It is not a recommended to put Controller logic and HTML output in a single file. (more…)
Change video poster image in your VdoCipher’s secure video
We have added an easy way to change the video poster image for your videos. New images can now be uploaded right from your dashboard. A video's poster image changes how the user engages with the video. The poster image is the image that is displayed right before the video. The user has to click on this poster image or a play button over it to start playing the video. It is usually the first thing viewer will notice on the page or the screen and will affect their engagement. A good poster image shows ample information about the content…
C# sample API for video upload from browser to VdoCipher
To automate your video website platform, you need video upload directly through your website. Read this for details about this method. The following code gives an example written in C#. C# Sample Code for VdoCipher OTP Generation In this example, the sample videoID is 1234567890, and the API Secret Key is a1b2c3d4e5. The time-to-live for OTP validity is set to 300s in the sample code. You can reference the API documentation for more info. var client = new RestClient("https://dev.vdocipher.com/api/videos/1234567890/otp"); var request = new RestRequest(Method.POST); request.AddHeader("Accept", "application/json"); request.AddHeader("Content-Type", "application/json"); request.AddHeader("Authorization", "Apisecret a1b2c3d4e5"); request.AddParameter("undefined", "{\n\t\"ttl\":300\n}", ParameterType.RequestBody); IRestResponse response = client.Execute(request); The controller makes an API request to…