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…
PHP implementation of VdoCipher API for Video Security
Update 5 June 2018 This implementation of VdoCipher Secure Streaming API is updated for latest API version v3, and for latest player version 1.6.4. A previous version of the blog used API v2. While we still support API version v2 we recommend that you use API v3 as part of your video workflow. If you have any queries regarding API v2 please do get in touch with us at support@vdocipher.com. The complete VdoCipher API reference is available here. A sample video-based workflow for your website is suggested here. Here is a PHP code to use VdoCipher API along with dynamic watermarking.…
DRM Security: Protect Your Premium Content With DRM Security Provider
What is DRM Security? DRM security is basically utilizing DRM or Digital Rights management technology to protect your content from any unauthorized access. Content platforms use DRM security in order to ensure that they don’t lose any revenue due to piracy. DRM security ensures that the content is not being able to get downloaded. You can also put certain DRM restrictions on your content, which allows you to blacklist certain IP addresses, geographies and more. With the hardware-level DRM you can even ensure that no one can screen record your videos as well. Why Do You Need DRM Security? DRM…
Amazon Prime vs Netflix: Which Streaming Service is Right For You
Amazon Prime vs Netflix is one of the most heated modern debates among entertainment enthusiasts. As we already know, both platforms offer online streaming services for TV shows and movies on the device of your choice. They are already in the first and second positions in terms of user base and popularity. Now the question is, Amazon vs Netflix, which one is better? It's pretty clear how the world of streaming has been rapidly expanding its branches. There was a time when the entertainment industry was limited to cable TV. But as digital media underwent an intense evolution, streaming platforms…
Disney vs Netflix: Which Streaming Service is Right for You
Nowadays, a video streaming service is available just about wherever you look. All you need is a smart TV, a subscription, and an internet connection, and you are all set for entertainment. However, with the launch of new streaming services every day, it may not be easy for people to opt for one that gives the most value. When comparing one streaming service to another, it is not always easy to determine precisely what one offers in comparison to the other. Today’s discussion will compare two well-known streaming platforms: Disney vs Netflix We will also see what advantages Disney Plus…
VdoCipher Android SDK Features Update
We are happy to inform you about major updates to our Android Native and React Native SDK to provide new cool features. Android Native SDK: Exoplayer version upgrade - Upgraded Exoplayer dependency to the latest version 2.18.0. Android Native SDK Doc, latest version 1.12.1. Android Video SDK Picture in Picture - You can also implement Picture in Picture mode in your app with our player by following the documentation presented here. Auto-Resume - While generating the embed info for a video, the user can also pass the flag enableAutoResume (default: false), to enable the auto-resume of the video playback from the last watched…