It became apparent yesterday (October 20th) that playback utilising the HTML5 video tags was no longer operational. After comparing the source paths outputted by the module to those used on the Vzaar site, it seems that they no longer support the .mobile suffix for HTML5 video. Changing line 390 of vzaar.inc to amend the URI solves the issue (for us at least). Old and new code for reference:

Old
$output .= '<video controls width="'. $width .'" height="'. $height .'" src="http://view.vzaar.com/'. $code .'.mobile" poster="http://view.vzaar.com/'. $code .'.image"></video>';

New
$output .= '<video controls width="'. $width .'" height="'. $height .'" src="http://view.vzaar.com/'. $code .'/video" poster="http://view.vzaar.com/'. $code .'/image"></video>';

Comments

heylookalive’s picture

Status: Active » Fixed

Hi!

Apologies for the slow-ness, thanks for the fix, I've created a new release with this in it.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.