From: Alan Jack Pippin Date: Thu, 30 Aug 2007 15:13:00 +0000 (-0600) Subject: Added new youtubeShowRelated parameter X-Git-Tag: 1_1_1~22 X-Git-Url: http://git.pippins.net/embedvideo/.git/?a=commitdiff_plain;h=5a9743847ef6ce2a1270ee88719bbfb84c17cff6;p=embedvideo%2F.git Added new youtubeShowRelated parameter Added support for .swf file types Improved thumbnail resizing logic --- diff --git a/ItemAddEmbedVideo.inc b/ItemAddEmbedVideo.inc index 983ec79..f7ab013 100644 --- a/ItemAddEmbedVideo.inc +++ b/ItemAddEmbedVideo.inc @@ -78,6 +78,7 @@ class ItemAddEmbedVideo extends ItemAddPlugin { $debugOutput = $this->getParameter($ItemAddEmbedVideo, 'debugOutput', "false"); $useInternalFlvPlayer = $this->getParameter($ItemAddEmbedVideo, 'useInternalFlvPlayer', "true"); $youtubeDevId = $this->getParameter($ItemAddEmbedVideo, 'youtubeDevId', ""); + $youtubeShowRelated = $this->getParameter($ItemAddEmbedVideo, 'youtubeShowRelated', "false"); $width = $this->getParameter($ItemAddEmbedVideo, 'width', "320"); $height = $this->getParameter($ItemAddEmbedVideo, 'height', "240"); $externalFlvPlayer = $this->getParameter($ItemAddEmbedVideo, 'externalFlvPlayer', ""); @@ -93,6 +94,7 @@ class ItemAddEmbedVideo extends ItemAddPlugin { print "debugOutput=$debugOutput
"; print "useInternalFlvPlayer=$useInternalFlvPlayer
"; print "youtubeDevId=$youtubeDevId
"; + print "youtubeShowRelated=$youtubeShowRelated
"; print "width=$width
"; print "height=$height
"; print "externalFlvPlayer=$externalFlvPlayer
"; @@ -170,6 +172,12 @@ class ItemAddEmbedVideo extends ItemAddPlugin { "Unable to get video information at url: $url - $response"),null,null); } + if(preg_match("/This video is private/",$xml)) { + return array(GalleryCoreApi::error(ERROR_BAD_PARAMETER,__FILE__,__LINE__, + "Unable to retrieve video information from youtube.". + "You cannot embed a private youtube video: $url"),null,null); + } + if(!strcmp($debugOutput,"true")) { print "

Youtube XML Dump

"; print "$xml"; @@ -207,14 +215,21 @@ class ItemAddEmbedVideo extends ItemAddPlugin { if(!strcmp($autoStart,"true")) { $autoStartStr="&autoplay=1"; } + + /* Determine if the video should show related videos or not based on the youtubeShowRelated parameter */ + $youtubeShowRelatedStr=""; + if(!strcmp($youtubeShowRelated,"false")) { + $youtubeShowRelatedStr="&rel=0"; + } /* Format the description to hold a reference to the embedded video */ $description = ''; $description.= ''; $description.= ''; - $description.= ''; $description.= "
$summary"; @@ -375,7 +390,48 @@ class ItemAddEmbedVideo extends ItemAddPlugin { } $description.= ""; $description.= "
$summary"; - + + + /* + ********************************** + * Embed a remote .swf file + ********************************** + */ + } else if(preg_match("/.*\/(.+?)\.swf/i",$url,$matches)) { + + /* Set the title and summary to the name of the file */ + $title = $matches[1]; + $summary = $matches[1]; + + /* + * Set the thumbnail to some generic jpg image, + * since we can't extract it from the remote swf file. + * If no parameter is set, set it to a default value. + */ + if(preg_match("/\w+/", $flvThumbnail)) { + $thumbnail = $flvThumbnail; + } else { + $thumbnail = $gallery2_url.$gallery2_flv_thumbnail; + } + + /* + * Check to make sure the URL to the remote swf file is valid + * (That the file exists at the URL given) + */ + list ($successfullyCopied, $response, $headers) = + $this->fetchWebFileHeaders($url, $extraHeaders); + if (!$successfullyCopied) { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to find the video at url: $url - $response"),NULL,NULL); + } + + /* + * Format the description to hold a reference to the embedded video + */ + + /* Format the description to hold a reference to the embedded video */ + $description =''; + /* ********************************** * Embed a remote .flv file @@ -561,9 +617,21 @@ class ItemAddEmbedVideo extends ItemAddPlugin { } } } - $debugString.="Resizing thumbnail image to $thumbnailSize: $tmpFile -> $newTmpFile
"; + + // Obtainin the width and height of the original thumbnail, finding out it's ratio, + // and using that ratio when determining the width of the video below. + // Example: youtube: 130x97 google: 160x120 metacafe: 90x76 yahoo: 100x70 + // Set the thumbnailHeight to the current thumbnailSize + // Set the thumbnailWidth to the appropriate size based on the thumbnailHeight * ratio + $image_data = @getimagesize($tmpFile); + $ratio = $image_data[0] / $image_data[1]; + $debugString.="Using ratio from original thumbnail of $ratio. "; + $thumbnailSize=150; + $thumbnailHeight=$thumbnailSize; + $thumbnailWidth=round($thumbnailHeight * $ratio); + $debugString.="Resizing thumbnail image to $thumbnailWidth x $thumbnailHeight: $tmpFile -> $newTmpFile
"; $toolkit->performOperation($mimeType, 'resize', $tmpFile, $newTmpFile, - array($thumbnailSize,$thumbnailSize)); + array($thumbnailWidth,$thumbnailHeight)); } } if(!strcmp($debugOutput,"true")) { diff --git a/module.inc b/module.inc index fc6e90f..0f6e5d2 100644 --- a/module.inc +++ b/module.inc @@ -77,7 +77,7 @@ class EmbedVideoModule extends GalleryModule { if (!isset($params['embedvideodefaultVariables'])) { $ret = $this->setParameter('embedvideodefaultVariables', - 'height=240|width=320|useInternalFlvPlayer=true|useRemoteSize=false'); + 'height=240|width=320|useInternalFlvPlayer=true|useRemoteSize=false|youtubeShowRelated=false'); if ($ret) { return $ret; } diff --git a/templates/EmbedVideoSiteAdmin.tpl b/templates/EmbedVideoSiteAdmin.tpl index a0609cd..8d5f2e9 100644 --- a/templates/EmbedVideoSiteAdmin.tpl +++ b/templates/EmbedVideoSiteAdmin.tpl @@ -115,7 +115,7 @@ useInternalFlvPlayertrue/false {g->text text="instructs the module to use Gallery's built-in flv player when embedding links to .flv files"} - externalFlvPlayerURL to external flv player (.swf) + externalFlvPlayerURL to external flv player (.swf) {g->text text="instructs the module to use an external flv player when embedding links to .flv files"} externalFlvPlayerVarsflashvars= options for external flash player @@ -124,19 +124,22 @@ youtubeDevIdxxxxxxxxxxx {g->text text="specify the youtube Developer ID used when this plugin makes API calls to youtube"} - useRemoteSizetrue/false + youtubeShowRelatedtrue/false + {g->text text="specify whether you want to show the related video links in the youtube embedded player"} + + useRemoteSizetrue/false {g->text text="use the remote video size instead of the width and height specified here"} autoStarttrue/false {g->text text="specify if the embedded video players should autostart the videos or not"} - width320 + width320 {g->text text="specify the width dimension of the embedded video player"} height240 {g->text text="specify the height dimension of the embedded video player"} - debugOutputtrue/false + debugOutputtrue/false {g->text text="turn on module debug output"} flvThumbnailURL path diff --git a/templates/ItemAddEmbedVideo.tpl b/templates/ItemAddEmbedVideo.tpl index 7f10a0f..33d8634 100644 --- a/templates/ItemAddEmbedVideo.tpl +++ b/templates/ItemAddEmbedVideo.tpl @@ -27,6 +27,7 @@
Supported File Types:
FlashVideo (.flv): http://aaa.bbb.ccc/video.flv
+ FlashVideo (.swf): http://aaa.bbb.ccc/video.swf