Posts

Showing posts from June, 2021

How to add YouTube videos on video.js player in Blogger (embed)

 Hloo, everyone in this article we are going to see how to add (embed) YouTube videos on  Video.js player in a Blogger website. You can simply copy paste the codes and YouTube links. You can also make money with publisher monetisation in Ad Networks. Best thing in this is, you can copy any video in YouTube,unless the video owner does not enabled copyright. Steps: 1. Copy the below code and paste it just above   </head> tag : <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/video.js/7.12.0/video-js.min.css" /> 2. copy the code and paste it above the </body> tag : <script  src="https://cdnjs.cloudflare.com/ajax/libs/video.js/7.12.0/video.min.js"></script> <script  src="https://cdnjs.cloudflare.com/ajax/libs/videojs-youtube/2.6.1/Youtube.min.js"></script> 3. In the blogger posts switch to HTML view and paste the following code : <video    id="my-video"    class="video-js...

Script for vast

 Code: <link rel="stylesheet" href="https://cdn.fluidplayer.com/v2/current/fluidplayer.min.css" type="text/css"> <script src="https://cdn.fluidplayer.com/v2/current/fluidplayer.min.js"></script> <video id="my-video" controls="" style="width: 340px; height: 260px;">     <source src=" video.mp4 " type="video/mp4"> </video> <script type="application/javascript"> var testVideo = fluidPlayer(     "my-video",     {         vastOptions : {             "adList" : [{                "vAlign" : "bottom",                 "roll" : "preRoll",                 "vastTag" : " your url "             }]         }     } ); </script> Put the video link and vast URL... Thank you....

How to add direct download link from Google drive (pdf, video ,etc.,)

 How to create Direct Download link from Google drive : Code : https://drive.google.com/uc?export=download&id= your file id Example; HTTPS://drive.google.com/uc?export=download&I'd= 133lelRFFKoS3pyBIDthbGwH4uPqBYlbO My file link in Google drive: https://drive.google.com/file/d/ 133lelRFFKoS3pyBIDthbGwH4uPqBYlbO /view?usp=drivesdk Steps: 1. Upload the file/video into your Google drive account. 2. After completing upload, click on share option ➡️ click the " share anyone with the link" 3. Then copy the link 4. Copy the video id 5. Paste the code before the id 6. This is the link for your file Example :

How to add Fluid player (free) in Blogger website - HTML 5 video player

 Fluid player: Fluid Player, the free, open-source, HTML5 video player has been updated to version 3. The player has undergone a major modernization of the codebase significantly improving code quality and improving the player stability. More than 60 bugs and issues were fixed in version 3 improving compatibility, responsiveness and rendering of the player.  Why to add Video player in Blogger: Video players are added to blogger website to avoid upside load, decrease loading time, avoid brudcums errors and good user experience Embedding a video with video players make website lightweight which  enables good customer satisfaction. How to add Fluid player in Blogger: Steps: 1. Visit Fluid player official website. 2. Build the Video player in Video builder. 3. Customize your Video player. 4. Then,copy the codes. 5. Log in to your blog. 6. Create a new post. 7. Switch to HTML view. 8. Paste the codes  9. Add your Video URL 10. Save and publish. Example: Codes: <script ...