Skip to content

Instantly share code, notes, and snippets.

@phpfunk
Created May 17, 2012 15:49
Show Gist options
  • Save phpfunk/2719722 to your computer and use it in GitHub Desktop.
Save phpfunk/2719722 to your computer and use it in GitHub Desktop.
Get HTML5 w/Flash Fallback Embed Code
<?
include '/path/to/viddler/api/';
$v = new Viddler_V2('YOUR API KEY');
$auth = $v->viddler_users_auth(array(
'user' => 'YOUR USERNAME',
'password' => 'YOUR PASSWORD'
));
if (! isset($auth['auth']['sessionid'])) {
//Handle auth error
}
//Get HTML5 w/Flash Fallback Embed Code
$embed = $v->viddler_videos_getEmbedCode(array(
'sessionid' => $auth['auth']['sessionid'],
'video_id' => 'VIDEO_ID',
'embed_code_type' => 5,
'forceHtml5' => 'true'
));
echo (isset($embed['video']['embed_code'])) ? $embed['video']['embed_code'] : 'No embed code found';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment