Comments on: Dynamic Watermark Demo: Add User Identifier Text to Videos- User ID, Email ID, Phone No. https://www.vdocipher.com/blog/2014/12/add-text-to-videos-with-watermark/ Secure Video Streaming Tue, 26 Mar 2024 09:25:02 +0000 hourly 1 https://wordpress.org/?v=6.4.5 By: Rahul Rana https://www.vdocipher.com/blog/2014/12/add-text-to-videos-with-watermark/#comment-23361 Tue, 13 Sep 2022 11:27:53 +0000 http://www.vdocipher.com/blog/?p=205#comment-23361 In reply to Weraan.

Kindly share this query in detail at support@vdocipher.com

]]>
By: Weraan https://www.vdocipher.com/blog/2014/12/add-text-to-videos-with-watermark/#comment-21240 Mon, 18 Jul 2022 08:37:40 +0000 http://www.vdocipher.com/blog/?p=205#comment-21240 $apikey = “$key”;
$vidID = $CourseYoutubeLink;
$curl = curl_init();

curl_setopt_array($curl, array(
CURLOPT_URL => “https://dev.vdocipher.com/api/videos/$vidID/otp”,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => “”,
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => “POST”,
CURLOPT_POSTFIELDS => json_encode([
“ttl” => 300,
]),
CURLOPT_HTTPHEADER => array(
“Accept: application/json”,
“Authorization: Apisecret $apikey”,
“Content-Type: application/json”
),

));

$response = curl_exec($curl);
$err = curl_error($curl);
$obj = json_decode($response);
curl_close($curl);

if ($err) {
echo “cURL Error #:” . $err;
} else {

$otp = $obj->otp;
$playback = $obj->playbackInfo;

This is my current code can you place add watermark to this ?

]]>
By: Vansh https://www.vdocipher.com/blog/2014/12/add-text-to-videos-with-watermark/#comment-9354 Mon, 09 Aug 2021 10:39:39 +0000 http://www.vdocipher.com/blog/?p=205#comment-9354 In reply to Vibhav Sinha.

Hello Vaibhav Sir I Have Purchased Plan I Wanted to Know Phone Number Code For Watermark

]]>
By: siddhant https://www.vdocipher.com/blog/2014/12/add-text-to-videos-with-watermark/#comment-59 Tue, 09 Aug 2016 09:08:00 +0000 http://www.vdocipher.com/blog/?p=205#comment-59 In reply to Peter.

Hello Peter, VdoCipher does not use normal public embed codes. Through our plugins & APIs, we provide a custom embed code, which generates a new url with OTP (One time password) at backend. Thus once a video url is generated for streaming, it will not play for second time.

]]>
By: Peter https://www.vdocipher.com/blog/2014/12/add-text-to-videos-with-watermark/#comment-58 Tue, 09 Aug 2016 09:02:00 +0000 http://www.vdocipher.com/blog/?p=205#comment-58 How to prevent the copying of video link to use by other users?

]]>
By: ASP.net C# web forms embed vdocipher video - VdoCipher Blog https://www.vdocipher.com/blog/2014/12/add-text-to-videos-with-watermark/#comment-28 Mon, 07 Mar 2016 13:38:00 +0000 http://www.vdocipher.com/blog/?p=205#comment-28 […] can be added when generating the OTP in the controller file. Please read this article on structuring your watermark and a sample code. The watermark has to be URLencoded and sent as a […]

]]>
By: Drupal module to embed vdocipher videos - VdoCipher Blog https://www.vdocipher.com/blog/2014/12/add-text-to-videos-with-watermark/#comment-22 Thu, 11 Feb 2016 00:02:50 +0000 http://www.vdocipher.com/blog/?p=205#comment-22 […] or an image for branding. You can configure the watermark from the module configuration page. Check this article for more information on the structure and format required to add watermark text or image in the […]

]]>
By: Code to embed vdocipher video in ASP.NET MVC with C# - VdoCipher Blog https://www.vdocipher.com/blog/2014/12/add-text-to-videos-with-watermark/#comment-20 Mon, 08 Feb 2016 13:04:14 +0000 http://www.vdocipher.com/blog/?p=205#comment-20 […] can be added when generating the OTP in the controller file. Please read this article on structuring your watermark and a sample code. The watermark has to be URLencoded and sent as a […]

]]>
By: Vibhav Sinha https://www.vdocipher.com/blog/2014/12/add-text-to-videos-with-watermark/#comment-19 Mon, 01 Feb 2016 07:07:00 +0000 http://www.vdocipher.com/blog/?p=205#comment-19 In reply to bailarina.

Hi Bailarina, yes if you can put any variables that you can obtain as watermark. If you are using the wordpress plugin, there is a very easy way to do that as described here https://www.vdocipher.com/blog/2014/08/variables-on-wordpress-videos/

]]>
By: bailarina https://www.vdocipher.com/blog/2014/12/add-text-to-videos-with-watermark/#comment-18 Thu, 28 Jan 2016 10:36:00 +0000 http://www.vdocipher.com/blog/?p=205#comment-18 Could it display the name of the person who is watching if they are logged in? Thanks!

]]>