Difference between revisions of "Extension:VideoSectionLink"
(Tidy parser function string) |
(Change title data) |
||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<?php | <?php | ||
/**{{Category:Extensions|VideoSectionLink}}{{php}}{{Category:Extensions created with Template:Extension}} | /**{{Category:Extensions|VideoSectionLink}}{{php}}{{Category:Extensions created with Template:Extension}} | ||
− | * VideoSectionLink extension - An extension to enable users to link to defined sections of video. Made with [http://www.organicdesign.co.nz/Template:Extension Template:Extension] | + | * VideoSectionLink extension - An extension to enable users to link to or embed user-defined sections of video. Made with [http://www.organicdesign.co.nz/Template:Extension Template:Extension] |
* | * | ||
* See http://www.mediawiki.org/wiki/Extension:VideoSectionLink for installation and usage details | * See http://www.mediawiki.org/wiki/Extension:VideoSectionLink for installation and usage details | ||
Line 8: | Line 8: | ||
* @subpackage Extensions | * @subpackage Extensions | ||
* @author [http://www.mediawiki.org/wiki/User:Jacknz User:Jacknz] | * @author [http://www.mediawiki.org/wiki/User:Jacknz User:Jacknz] | ||
− | * @copyright © 2008 [http://www. | + | * @copyright © 2008 [http://www.flashkiwi.com/ Jack Henderson] |
* @licence GNU General Public Licence 2.0 or later | * @licence GNU General Public Licence 2.0 or later | ||
*/ | */ | ||
Line 22: | Line 22: | ||
$wgExtensionCredits['parserhook'][] = array( | $wgExtensionCredits['parserhook'][] = array( | ||
'name' => 'VideoSectionLink', | 'name' => 'VideoSectionLink', | ||
− | 'author' => '[http://www.mediawiki.org/wiki/User: | + | 'author' => '[http://www.mediawiki.org/wiki/User:Jacknz User:Jacknz]', |
− | 'description' => 'An extension to enable users to link to defined sections of video. Made with [http://www.organicdesign.co.nz/Template:Extension Template:Extension]', | + | 'description' => 'An extension to enable users to link to or embed user-defined sections of video. Made with [http://www.organicdesign.co.nz/Template:Extension Template:Extension]', |
'url' => 'http://www.organicdesign.co.nz/Extension:VideoSectionLink', | 'url' => 'http://www.organicdesign.co.nz/Extension:VideoSectionLink', | ||
'version' => VIDEOSECTIONLINK_VERSION | 'version' => VIDEOSECTIONLINK_VERSION | ||
Line 46: | Line 46: | ||
* Expand the videosection-magic | * Expand the videosection-magic | ||
*/ | */ | ||
− | function magicVideosectionlink (&$parser, $url = '', $start = '', $duration = '', $ext = '', $wtext = 'Click to download video') { | + | function magicVideosectionlink (&$parser, $url = '', $start = '', $duration = '', $ext = '', $width = '', $height = '', $wtext = 'Click to download video') { |
global $egVideoSectionLinkMagic, $wgScript, $wgUploadPath, $wgUploadDirectory, $wgServer; | global $egVideoSectionLinkMagic, $wgScript, $wgUploadPath, $wgUploadDirectory, $wgServer; | ||
− | + | if ($ext == '' || $ext != "embed") { | |
$text = "<a href='$wgServer$wgScript?action=videosection&url=" . urlencode($url) . "&start=$start&duration=$duration&ext=$ext'>$wtext</a>"; | $text = "<a href='$wgServer$wgScript?action=videosection&url=" . urlencode($url) . "&start=$start&duration=$duration&ext=$ext'>$wtext</a>"; | ||
− | + | ||
− | + | # Return result with available parser flags | |
− | + | ||
− | + | return array( | |
− | + | $text, | |
− | + | 'found' => true, | |
− | + | 'nowiki' => false, | |
− | + | 'noparse' => true, | |
− | + | 'noargs' => false, | |
− | 'isHTML' => true | + | 'isHTML' => true |
− | + | ); | |
+ | } | ||
+ | else { | ||
+ | # Get components of url, hash the first part | ||
+ | $dest = preg_replace('%(.+?\.)(\w+$)%', '$1', $url); | ||
+ | $ext = "flv"; | ||
+ | $movieOut = md5($dest.$start.$duration.$ext.$width.$height) . "." . $ext; | ||
+ | |||
+ | # Execute the ffmpeg command | ||
+ | if (!file_exists($movieOut)) { | ||
+ | $movieStr = "ffmpeg -i $url -ss $start -t $duration -ar 22050 $wgUploadDirectory/$movieOut"; | ||
+ | $success = shell_exec($movieStr); | ||
+ | } | ||
+ | |||
+ | # Create the embed string to return | ||
+ | if ($width == '') $width = "320"; | ||
+ | if ($height == '') $height = "240"; | ||
+ | $embedText = | ||
+ | "<html><object id=\"FlowPlayer\" width=\"$width\" height=\"$height\" data=\"$wgServer$wgUploadPath/FlowPlayer.swf\" type=\"application/x-shockwave-flash\">" | ||
+ | . "<param name=\"allowScriptAccess\" value=\"sameDomain\"/>" | ||
+ | . "<param name=\"movie\" value=\"$wgServer$wgUploadPath/FlowPlayer.swf\"/>" | ||
+ | . "<param name=\"quality\" value=\"high\"/>" | ||
+ | . "<param name=\"scale\" value=\"noScale\"/>" | ||
+ | . "<param name=\"wmode\" value=\"transparent\"/>" | ||
+ | . "<param name=\"flashvars\" value=\"videoFile=$wgUploadPath/$movieOut&baseURL=$wgServer\"/>" | ||
+ | . "</object></html>"; | ||
+ | |||
+ | return array( | ||
+ | $embedText, | ||
+ | 'noparse' => true, | ||
+ | 'isHTML' => true | ||
+ | ); | ||
+ | } | ||
} | } | ||
Line 83: | Line 115: | ||
# Get components of url, hash the first part | # Get components of url, hash the first part | ||
$dest = preg_replace('%(.+?\.)(\w+$)%', '$1', $url); | $dest = preg_replace('%(.+?\.)(\w+$)%', '$1', $url); | ||
− | |||
# Identify the extension for naming the decoded file | # Identify the extension for naming the decoded file | ||
if ($ext == "mpg" || $ext == "avi" || $ext == "flv") { | if ($ext == "mpg" || $ext == "avi" || $ext == "flv") { | ||
− | $movieOut = md5($start.$duration.$ | + | $movieOut = md5($dest.$start.$duration.$ext.$width.$height) . "." . $ext; |
} | } | ||
else { | else { | ||
$ext = preg_replace('%(.+?\.)(\w+$)%', '$2', $url); | $ext = preg_replace('%(.+?\.)(\w+$)%', '$2', $url); | ||
if ($ext == "mpg" || $ext == "avi" || $ext == "flv") { | if ($ext == "mpg" || $ext == "avi" || $ext == "flv") { | ||
− | $movieOut = md5($start.$duration.$ | + | $movieOut = md5($dest.$start.$duration.$ext.$width.$height) . "." . $ext; |
} | } | ||
else { | else { | ||
$ext = "mpg"; | $ext = "mpg"; | ||
− | $movieOut = md5($start.$duration.$ | + | $movieOut = md5($dest.$start.$duration.$ext.$width.$height) . "." . $ext; |
} | } | ||
} | } | ||
Line 102: | Line 133: | ||
# Execute the ffmpeg command | # Execute the ffmpeg command | ||
if (!file_exists($movieOut)) { | if (!file_exists($movieOut)) { | ||
− | + | if ($ext == "flv") { | |
+ | $movieStr = "ffmpeg -i $url -ss $start -t $duration -ar 22050 $wgUploadDirectory/$movieOut"; | ||
+ | } | ||
+ | else { | ||
+ | $movieStr = "ffmpeg -i $url -ss $start -t $duration $wgUploadDirectory/$movieOut"; | ||
+ | } | ||
$success = shell_exec($movieStr); | $success = shell_exec($movieStr); | ||
} | } | ||
− | + | ||
# Set headers to video | # Set headers to video | ||
$wgOut->disable(); | $wgOut->disable(); |
Latest revision as of 04:34, 28 November 2008
<?php /**
Template:PhpCategory:Extensions created with Template:Extension
* VideoSectionLink extension - An extension to enable users to link to or embed user-defined sections of video. Made with Template:Extension * * See http://www.mediawiki.org/wiki/Extension:VideoSectionLink for installation and usage details * * @package MediaWiki * @subpackage Extensions * @author User:Jacknz * @copyright © 2008 Jack Henderson * @licence GNU General Public Licence 2.0 or later */
if (!defined('MEDIAWIKI')) die('Not an entry point.');
define('VIDEOSECTIONLINK_VERSION', '0.0.1, 2008-10-31');
$egVideoSectionLinkMagic = 'videosection'; $wgExtensionFunctions[] = 'efSetupVideoSectionLink'; $wgHooks['LanguageGetMagic'][] = 'efVideoSectionLinkLanguageGetMagic';
$wgExtensionCredits['parserhook'][] = array(
'name' => 'VideoSectionLink',
'author' => 'User:Jacknz',
'description' => 'An extension to enable users to link to or embed user-defined sections of video. Made with Template:Extension',
'url' => 'http://www.organicdesign.co.nz/Extension:VideoSectionLink',
'version' => VIDEOSECTIONLINK_VERSION
);
class VideoSectionLink {
/** * Constructor */ function __construct() { global $wgHooks, $wgParser, $egVideoSectionLinkMagic;
# Add the parser-function $wgParser->setFunctionHook($egVideoSectionLinkMagic, array($this,'magicVideosectionlink'));
#Add the Unknownaction hook $wgHooks['UnknownAction'][] = $this; }
/** * Expand the videosection-magic */ function magicVideosectionlink (&$parser, $url = , $start = , $duration = , $ext = , $width = , $height = , $wtext = 'Click to download video') { global $egVideoSectionLinkMagic, $wgScript, $wgUploadPath, $wgUploadDirectory, $wgServer; if ($ext == || $ext != "embed") { $text = "<a href='$wgServer$wgScript?action=videosection&url=" . urlencode($url) . "&start=$start&duration=$duration&ext=$ext'>$wtext</a>";
# Return result with available parser flags
return array( $text, 'found' => true, 'nowiki' => false, 'noparse' => true, 'noargs' => false, 'isHTML' => true ); } else { # Get components of url, hash the first part $dest = preg_replace('%(.+?\.)(\w+$)%', '$1', $url); $ext = "flv"; $movieOut = md5($dest.$start.$duration.$ext.$width.$height) . "." . $ext;
# Execute the ffmpeg command if (!file_exists($movieOut)) { $movieStr = "ffmpeg -i $url -ss $start -t $duration -ar 22050 $wgUploadDirectory/$movieOut"; $success = shell_exec($movieStr); }
# Create the embed string to return if ($width == ) $width = "320"; if ($height == ) $height = "240"; $embedText = "";
return array( $embedText, 'noparse' => true, 'isHTML' => true ); } }
/** * Callback method executes a shell command returning the section of the movie requested */ function onUnknownAction ($action, $article) { global $wgOut, $action, $article, $wgRequest, $wgUploadDirectory;
# Get the parameters from the title # $url is the url of the originating file and can be local or Internet # $start is the start time expressed in HH:MM:SS
# $duration is the desired duration of clip expressed in HH:MM:SS # $ext is the desired extension, can be mpg, avi, flv, or embed, which is an flv returned as embed code.
$url = $wgRequest->getText('url'); $start = $wgRequest->getText('start');
$duration = $wgRequest->getText('duration'); $ext = $wgRequest->getText('ext');
# Get components of url, hash the first part $dest = preg_replace('%(.+?\.)(\w+$)%', '$1', $url); # Identify the extension for naming the decoded file if ($ext == "mpg" || $ext == "avi" || $ext == "flv") { $movieOut = md5($dest.$start.$duration.$ext.$width.$height) . "." . $ext; } else { $ext = preg_replace('%(.+?\.)(\w+$)%', '$2', $url); if ($ext == "mpg" || $ext == "avi" || $ext == "flv") { $movieOut = md5($dest.$start.$duration.$ext.$width.$height) . "." . $ext;
} else { $ext = "mpg"; $movieOut = md5($dest.$start.$duration.$ext.$width.$height) . "." . $ext; } }
# Execute the ffmpeg command if (!file_exists($movieOut)) { if ($ext == "flv") {
$movieStr = "ffmpeg -i $url -ss $start -t $duration -ar 22050 $wgUploadDirectory/$movieOut"; } else { $movieStr = "ffmpeg -i $url -ss $start -t $duration $wgUploadDirectory/$movieOut"; }
$success = shell_exec($movieStr);
}
# Set headers to video $wgOut->disable(); header("Content-Type: video/mpeg"); $wgHfile = "Content-Disposition: attachment; filename=\"$wgUploadDirectory/$movieOut\""; header($wgHfile);
# Return the file as binary back to the client readfile("$wgUploadDirectory/$movieOut");
return true; }
/** * Needed in some versions to prevent Special:Version from breaking */ function __toString() { return __CLASS__; }
}
/**
* Called from $wgExtensionFunctions array when initialising extensions */
function efSetupVideoSectionLink() { global $egVideoSectionLink; $egVideoSectionLink = new VideoSectionLink();
}
/**
* Needed in MediaWiki >1.8.0 for magic word hooks to work properly */
function efVideoSectionLinkLanguageGetMagic(&$magicWords, $langCode = 0) { global $egVideoSectionLinkMagic; $magicWords[$egVideoSectionLinkMagic] = array($langCode, $egVideoSectionLinkMagic); return true; }