JW HTML5 Player (Longtail) BBCode help

Support for PhpBB3 BBCodes. Post here to get help with any BBCode related issue here
There is no support here! Only Read Access!
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe exactly what it is you want.
3. Tell us what version of phpBB3 you are currently using.
Else your topic may be ignored or locked!
Locked
BBCodeScrub
BBCoder I
BBCoder I
Posts: 1
Joined: 09 Sep 2010, 06:17

JW HTML5 Player (Longtail) BBCode help

Post by BBCodeScrub »

First off, wow so glad I found this site. I've been pouring over it searching for anything about their beta HTML5 player, and haven't seen anything yet.

I'm trying to embed h.264 (baseline) video into my phpbb3.02 board. I would just use this BBCode, but I really want to avoid Chrome and Safari's lack of recognizing the "preload" or "autobuffer," and Longtail's HTML5 player claims to do that (2nd to last paragraph of this page). And also it has a fallback to their Flash player if the the browser doesn't support it which is really convenient and brings it to the broadest audience possible on the site (mobile too!).

I'm pretty green (okay REALLY green), but here's what I've come up with (most of which is from their embedding guidelines and some of which is an attempted adaptation from this) so far:

Usage:

Code: Select all

[html5]{URL}[/html5]
Replacement:

Code: Select all

<div name="{URL}" id="{URL}"></div>
<script type="text/javascript" src="../piggytv/jquery.js"></script>
<script type="text/javascript" src="../piggytv/jquery.jwplayer.js"></script>

<video controls="controls" height="352" id="player" src="{URL}" width="624">

  <script type="text/javascript">
    $('#player').jwplayer({
      autostart:false,
      flashplayer:'../piggytv/player.swf',
      skin:'..piggytv/five/five.xml'
    });
  </script>
When I preview it in a post, I see the controls flash up for a split second, then it's just a black rectangle.

Thanks for any possible help here (hopefully it may also help others too w/ the rise in interest in HTML5) and hope I followed the rules correctly!
User avatar
Stoker
Site Admin
Site Admin
Posts: 3525
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: JW HTML5 Player (Longtail) BBCode help

Post by Stoker »

The embed code is here: http://www.longtailvideo.com/support/jw ... the-player
Start with that and get a working example you can work on.
Board rules! No PM support
Locked