2012-09-23 21:18:12 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Name: Handle Video
|
|
|
|
* Author: velocity37 <velocity37@gmail.com>
|
2016-08-20 00:03:55 +00:00
|
|
|
* Modified By: Shish <webmaster@shishnet.org>, jgen <jeffgenovy@gmail.com>, im-mi <im.mi.mail.mi@gmail.com>
|
2012-09-23 21:18:12 +00:00
|
|
|
* License: GPLv2
|
|
|
|
* Description: Handle FLV, MP4, OGV and WEBM video files.
|
|
|
|
* Documentation:
|
|
|
|
* Based heavily on "Handle MP3" by Shish.<br><br>
|
|
|
|
* FLV: Flash player<br>
|
|
|
|
* MP4: HTML5 with Flash fallback<br>
|
|
|
|
* OGV, WEBM: HTML5<br>
|
|
|
|
* MP4's flash fallback is forced with a bit of Javascript as some browsers won't fallback if they can't play H.264.
|
|
|
|
* In the future, it may be necessary to change the user agent checks to reflect the current state of H.264 support.<br><br>
|
|
|
|
*/
|
|
|
|
|
2019-05-28 16:59:38 +00:00
|
|
|
class VideoFileHandler extends DataHandlerExtension
|
|
|
|
{
|
|
|
|
public function onInitExt(InitExtEvent $event)
|
|
|
|
{
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
if ($config->get_int("ext_handle_video_version") < 1) {
|
|
|
|
if ($ffmpeg = shell_exec((PHP_OS == 'WINNT' ? 'where' : 'which') . ' ffmpeg')) {
|
|
|
|
//ffmpeg exists in PATH, check if it's executable, and if so, default to it instead of static
|
|
|
|
if (is_executable(strtok($ffmpeg, PHP_EOL))) {
|
|
|
|
$config->set_default_string('thumb_ffmpeg_path', 'ffmpeg');
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$config->set_default_string('thumb_ffmpeg_path', '');
|
|
|
|
}
|
|
|
|
|
|
|
|
$config->set_int("ext_handle_video_version", 1);
|
|
|
|
log_info("handle_video", "extension installed");
|
|
|
|
}
|
|
|
|
|
|
|
|
$config->set_default_bool('video_playback_autoplay', true);
|
|
|
|
$config->set_default_bool('video_playback_loop', true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function onSetupBuilding(SetupBuildingEvent $event)
|
|
|
|
{
|
|
|
|
$sb = new SetupBlock("Video Options");
|
|
|
|
$sb->add_label("<br>Path to ffmpeg: ");
|
|
|
|
$sb->add_text_option("thumb_ffmpeg_path");
|
|
|
|
$sb->add_label("<br>");
|
|
|
|
$sb->add_bool_option("video_playback_autoplay", "Autoplay: ");
|
|
|
|
$sb->add_label("<br>");
|
|
|
|
$sb->add_bool_option("video_playback_loop", "Loop: ");
|
|
|
|
$event->panel->add_block($sb);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate the Thumbnail image for particular file.
|
|
|
|
*/
|
|
|
|
protected function create_thumb(string $hash): bool
|
|
|
|
{
|
|
|
|
$ok = false;
|
|
|
|
|
2019-06-09 18:22:48 +00:00
|
|
|
$ok = create_thumbnail_ffmpeg($hash);
|
2019-05-28 16:59:38 +00:00
|
|
|
|
|
|
|
return $ok;
|
|
|
|
}
|
|
|
|
|
2019-06-09 18:22:48 +00:00
|
|
|
protected function video_size(string $filename): array
|
2019-05-28 16:59:38 +00:00
|
|
|
{
|
2019-06-09 18:22:48 +00:00
|
|
|
return video_size($filename);
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function supported_ext(string $ext): bool
|
|
|
|
{
|
|
|
|
$exts = ["flv", "mp4", "m4v", "ogv", "webm"];
|
|
|
|
return in_array(strtolower($ext), $exts);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function create_image_from_data(string $filename, array $metadata): Image
|
|
|
|
{
|
|
|
|
$image = new Image();
|
|
|
|
|
|
|
|
//NOTE: No need to set width/height as we don't use it.
|
|
|
|
$size = $this->video_size($filename);
|
|
|
|
$image->width = $size[0];
|
|
|
|
$image->height = $size[1];
|
|
|
|
|
|
|
|
switch (getMimeType($filename)) {
|
|
|
|
case "video/webm":
|
|
|
|
$image->ext = "webm";
|
|
|
|
break;
|
|
|
|
case "video/mp4":
|
|
|
|
$image->ext = "mp4";
|
|
|
|
break;
|
|
|
|
case "video/ogg":
|
|
|
|
$image->ext = "ogv";
|
|
|
|
break;
|
|
|
|
case "video/flv":
|
|
|
|
$image->ext = "flv";
|
|
|
|
break;
|
|
|
|
case "video/x-flv":
|
|
|
|
$image->ext = "flv";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$image->filesize = $metadata['size'];
|
|
|
|
$image->hash = $metadata['hash'];
|
|
|
|
$image->filename = $metadata['filename'];
|
|
|
|
$image->tag_array = is_array($metadata['tags']) ? $metadata['tags'] : Tag::explode($metadata['tags']);
|
|
|
|
$image->source = $metadata['source'];
|
|
|
|
|
|
|
|
return $image;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function check_contents(string $tmpname): bool
|
|
|
|
{
|
|
|
|
$success = false;
|
|
|
|
if (file_exists($tmpname)) {
|
|
|
|
$mimeType = getMimeType($tmpname);
|
|
|
|
|
|
|
|
$success = in_array($mimeType, [
|
|
|
|
'video/webm',
|
|
|
|
'video/mp4',
|
|
|
|
'video/ogg',
|
|
|
|
'video/flv',
|
|
|
|
'video/x-flv'
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $success;
|
|
|
|
}
|
2012-09-23 21:18:12 +00:00
|
|
|
}
|