Skip to content

XdPlayer is Javascript Video Player Library For HTML Video Player.

License

Notifications You must be signed in to change notification settings

Rohitbhati22/XdPlayer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

XdPlayer - Javascript Video Player Library

XdPlayer is Javascript Video Player Library For HTML Video Player.

Player UI 🥇

Player ScreenShot

Video Player Functions

  1. Play/Pause.
  2. Lock Controls.
  3. Playback Speed.
  4. Forword And Backword.
  5. Fullscreen.
  6. Volume Control.
  7. KeyBoard Controls.
  • p : Play or pause the video
  • s : Speed the video
  • f : Toggle fullscreen

Quick Start 📖

  • Link CSS & JS Files.

  • Add Video Element within th div named xdContainer Like This.

<div class="xdContainer">

        <video class="xdPlayer" 
        width="100%" 
        height="100%"
        preload="auto"
        poster="" > 
        <source src="test.mp4"  type="video/mp4" />
            <!-- You Can Also Add Other Video Formet Source -->
          </video>
  <!-- Video Player Container End -->
 </div>
  • To Controls height & width of Video Player Use .xdContainer Class In Css For Change height & width Like This.
.playerContainer {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #000;
  }
  • Add Video Source And Poster For Your Video & Use Class .xdPlayer In Video Tag.
<video class="xdPlayer" 
        width="100%" 
        height="100%"
        preload="auto"
        poster="" > 

            <source src="test.mp4"  type="video/mp4" />
            <!-- You Can Also Add Other Video Formet Source -->
          </video>

To Understand More You Can See The Index.html, Css & JS Files. 📂

Contributing 🖋️

XdPlayer is a free and open source library, and we appreciate any help you're willing to give - whether it's fixing bugs, improving documentation, or suggesting new features. Feel Free To Contributing. 💙

License 📌

XdPlayer is licensed under the Apache License, Version 2.0.

About

XdPlayer is Javascript Video Player Library For HTML Video Player.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published