我需要在我的网站上显示视频的播放时长。
我尝试使用getid3
,但它无效,它显示的警告如下:
preg_match()要求参数2为字符串,在第26行的C:\ wamp \ www \ PE \ getid3 \ getid3.php中给出的数组
警告:is_readable()要求参数1为有效路径,在第271行的C:\ wamp \ www \ PE \ getid3 \ getid3.php中给出的数组
警告:file_exists()期望参数1是有效路径,第271行的C:\ wamp \ www \ PE \ getid3 \ getid3.php中给出的数组
这是警告 等等,结果没有显示。
这是我的代码:
<?php
ini_set('display_errors',1);
ini_set('display_startup_errors',1);
ini_set('output_buffering','Off');
error_reporting(-1);
include_once("getid3/getid3.php");
$getID3 = new getID3;
$SongPath = pathinfo('http://localhost/PE/uploads/pe_discussion/videos/Wildlife.wmv');
set_time_limit(30);
$ThisFileInfo = $getID3->analyze($SongPath);
getid3_lib::CopyTagsToComments($ThisFileInfo);
echo 'File name: '.$ThisFileInfo['filenamepath'].'<br>';
echo 'Artist: '.(!empty($ThisFileInfo['comments_html']['artist'])
? implode('<BR>', $ThisFileInfo['comments_html']['artist'])
: ' ').'<br>';
echo 'Title: '.(!empty($ThisFileInfo['comments_html']['title'])
? implode('<BR>', $ThisFileInfo['comments_html']['title'])
: ' ').'<br>';
echo 'Bitrate: '.(!empty($ThisFileInfo['audio']['bitrate'])
? round($ThisFileInfo['audio']['bitrate'] / 1000).' kbps'
: ' ').'<br>';
echo 'Play time: '.(!empty($ThisFileInfo['playtime_string'])
? $ThisFileInfo['playtime_string']
: ' ').'<br>';
?>
答案 0 :(得分:1)
以下是您的快速回答:必须先将文件下载到您的服务器上。
这是一个简单的例子:
$SongPath = 'http://localhost/PE/uploads/pe_discussion/videos/Wildlife.wmv';
if($SongPath){
$filename = tempnam('/tmp','getid3');
if (file_put_contents($filename, file_get_contents($SongPath, false, null, 0, 300000))) {
if (require_once('getid3/getid3.php')) {
$getID3 = new getID3;
$ThisFileInfo = $getID3->analyze($filename);
}
unlink($filename);
}
}
var_dump($ThisFileInfo['playtime_string']);
PS:只需用现有的外部网址替换你的$ SongPath。