Code: |
<!-- Define a video with sources to attach Fluid Player to -->
<video id="example-player"> <source src="video.mp4" type="video/mp4"/> </video> <!-- Place before </body> tag --> <script src="https://cdn.fluidplayer.com/v3/current/fluidplayer.min.js"></script> <script> // fluidPlayer method is global when CDN distribution is used. var player = fluidPlayer('example-player'); </script> |