7.2.14 • Published 1 year ago

freedomplayer v7.2.14

Weekly downloads
-
License
GPLv3
Repository
github
Last release
1 year ago

Freedom Player

website | demos | docs

For the impatient

  1. Download Freedom Player
  2. Unzip
  3. Drop the folder under your server

Minimal setup

<!DOCTYPE html>

<head>
   <!-- flowplayer depends on jQuery 1.7.1+ (for now) -->
   <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

   <!-- flowplayer.js -->
   <script type="text/javascript" src="flowplayer.min.js"></script>

   <!-- player styling -->
   <link rel="stylesheet" type="text/css" href="flowplayer/minimalist.css">

</head>

<body>

   <!-- player 1 -->
   <div class="flowplayer">
      <video src="my-video.mp4"></video>
   </div>

   <!-- player 2 -->
   <div class="flowplayer">
      <video>
         <source type="video/webm" src="my-video2.webm">
         <source type="video/mp4" src="my-video2.mp4">
      </video>
   </div>

</body>

API Samples

// listen to events on second player
flowplayer(1).bind("load", function (e, api, video) {

}).bind("pause", function (e, api) {

});

// work with jQuery
$(".flowplayer").bind("unload", function (e, api) {

});

Reporting bugs

Please read the contributing guidelines before reporting issues or submitting patches.

Running tests

We do automated tests with Continuous Integration on a private server for now. The previous version Flowplayer 7 had automated testing built-in.

License

GPL v3

Copyright (c) 2022 Foliovision s.r.o.