PHP class to embed youtube, dailymotion and google video, extensible to other services with a simple configuration file (valid xhtml)
Posted by: Ori Pekelman in configuration, php, video, xhtmlI looked for a nice clean class implementation in PHP for embedding videos from youtube and such and could not find anything that was nice enough. So here is my take on embedding videos in php.
As the embed code is reconstructed it should be safe enough put probably some more checks need to be done after extracting the id to see there is nothing hostile there.
Configuration:
This class requires the SpyC library to read the cobnfiguration file. The library is assumed to be in the SITEBASE/include/yaml/ directory.
USAGE
note: The embed code may either be embed or url
-
$embed='http://www.youtube.com/watch?v=h2EUW_rgDVo';
-
$videoEmbed = new VideoEmbed($embed); //optional width and height may be passed to the constructor
-
$videoEmbed->width = 240; // resize
-
$videoEmbed->height = 120;
the other public properties are: ->id, ->type, ->url, ->width and ->height
note that magic getters and setters are used to make ->id, ->type, ->url read only
TODO: thumbnails should be cached locally
TODO: Create unit tests (for the moment test_VideoEmbed(); does some testing)
The video services are configured in the configuration file (video_embed.yaml), form:
---
embedTemplate: default embed template
defaultWidth: default width
defaultHeight: default height
services:
servicename:
urlPattern: pattern to distinguis between services
embedUrlTemplate: template (used with sprintf) for construvting the player url
thumbnailUrlTemplate: template to find thumnbail by video ID (used with sprintf)
thumbnailUrlExtractPattern: if present the thumbnailUrlTemplate is assumed to be a text resource, and this is a regexp to extract the thumnbail from it
extractPattern: regexp pattern to extract
apiUrl: api url (not used for the currently supported services)
defaultWidth: service default width
defaultHeight: service default height
embedTemplate: specific embed template (not used for the current supported services)
Example configuration file for google video youtube and dailymotion (if you configure it for other services please post the config)...
---
embedTemplate: <object width="%2$s" height="%3$s" ><param name="movie" value="%1$s"></param><param name="wmode" value="transparent"></param><embed src="%1$s" type="application/x-shockwave-flash" wmode="transparent" width="%2$s" height="%3$s"></embed></object>
defaultWidth: 425
defaultHeight: 350
services:
youtube:
urlPattern: youtube.com
embedUrlTemplate: http://www.youtube.com/v/%1$s&rel=1
thumbnailUrlTemplate: http://i.ytimg.com/vi/%1$s/default.jpg
extractPattern: /youtube\.com\/(v\/|watch\?v=)([\w\-]+)/
apiUrl: http://www.youtube.com/api2_rest
defaultWidth: 425
defaultHeight: 350
google:
urlPattern: video.google
extractPattern: /docid=([^&]*)/i
embedUrlTemplate: http://video.google.com/googleplayer.swf?docId=%1$s
thumbnailUrlTemplate: http://video.google.com/videofeed?docid=%s
thumbnailUrlExtractPattern: '/
And here is the code :Complete class code with readme and configuration file
The code referes to a debug function, you can use:
PHP:
-
function debug_log($msg, $file = "debug")
-
{
-
$dbg = "";
-
if (SITE != '[PROD]') {
-
-
foreach($bts as $bt) {
-
-
$dbg .= $path . " line " . $bt['line'] . " (function " . $bt['function'] . ")\n";
-
}
-
-
-
-
}
-
}

Entries (RSS)