Файл: F12/info.php
Строк: 37
<?php
Error_Reporting(E_ALL & ~E_NOTICE);
include_once('getid3/getid3.php');
$getID3 = new getID3;
$fileinfo = $getID3->analyze($failname);
getid3_lib::CopyTagsToComments($fileinfo);
include ("function.lib.php");
$header="Инфо...";
$align="left";
$copy="by nofx";
header ("Content-type: text/vnd.wap.wml");
wml_begin ($header);
p_begin ($align);
if (!empty($fileinfo['video']['resolution_x'])) { echo '[video width: '.$fileinfo['video']['resolution_x'].']<br/>'; }
if (!empty($fileinfo['video']['resolution_y'])) { echo '[video height: '.$fileinfo['video']['resolution_y'].']<br/>'; }
echo '[filesize: '.$fileinfo['filesize'].']<br/>';
echo '[playtime: '.$fileinfo['playtime_seconds'].']<br/>';
print utf_encode("<br/>
[<a href="$filename">скачать</a>]
");
p_end ();
wml_end ($copy);
?>