Monday, 8 April 2024

How to Stream Clearkey Protected MPD Video in dash.js

How to Stream Clearkey Protected MPD Video in dash.js

Video content is gaining lot of popularity these days and so does streaming. However, streaming video content is not new to web. But the way people are consuming it all around the world, it is becoming an issue for the content creator and content creation companies to control the spread of their content to unauthorized users or simple saying - unsubscribed users.

That's why Digital Rights Management (DRM) was developed to protect the video from piracy and to make it very hard (yet not impossible) to download the original video on client device.

Saturday, 6 October 2018

Make A Floating Button at Corners of Web-page In HTML5

Make A Floating Button at Corners of Web-page In HTML5
Want to make a button that Google seem to use most of the time in their apps and websites?
Like one showed below?
Google floating button code
Here's the code-
<div id="floating-button" onclick="function()"></div>
<style>
   #floating-button{ width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #db4437;
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    box-shadow: 0px 2px 5px #666;}
</style>