Esempio n. 1
0
function renderMP4($path, $data)
{
    $pm = new PictshareModel();
    $hash = $data['hash'];
    $urldata = $pm->getURLInfo($path, true);
    if ($data['size']) {
        $hash = $data['size'] . '/' . $hash;
    }
    $info = $pm->getSizeOfMP4($path);
    $width = $info['width'];
    $height = $info['height'];
    $filesize = $urldata['humansize'];
    include ROOT . DS . 'template_mp4.php';
}