Skip to content
This repository has been archived by the owner on Sep 30, 2021. It is now read-only.

4.2 Does rtmp work

bbbo edited this page Feb 17, 2014 · 1 revision

There are several ways to check this. One would be to comment out the MP4 source and open the page in Internet Explorer 8, if the video does play it can only do so through rtmp. The other would be to add data-debug="true" in the player container (or debug: true in a global configuration) and open the page in IE8 while the development console is open. You'll see the rtmp netconnect in the debug messages. Also for testing, you can add a code snippet like in http://stylebites.de/fp5/rtmpdebug which displays the source played. Add

<script>
   flowplayer(function (api) {
     api.bind("load", function (e, api, video) {
         $("#videosrc").text(video.src);
      });
   });
   </script>

in <head> and put

<p class="info">Playing <span id="videosrc">&nbsp;</span></p>

below the video container.

Clone this wiki locally