PHP Classes

File: getID3/demos/index.php

Recommend this page to a friend!
  Classes of Ali YILMAZ   PHP Media File Info Library   getID3/demos/index.php   Download  
File: getID3/demos/index.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Media File Info Library
Retrieve the details from a video or audio file
Author: By
Last change:
Date: 2 years ago
Size: 854 bytes
 

Contents

Class file image Download
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head><title>getID3 demos</title><style type="text/css">BODY, TD, TH { font-family: sans-serif; font-size: 10pt; }</style></head><body>

<?php
die('For security reasons, this demo has been disabled. It can be enabled by removing line '.__LINE__.' in demos/'.basename(__FILE__));
?>

In this directory are a number of examples of how to use <a href="https://www.getid3.org/">getID3()</a>.<br>
If you don't know what to run, take a look at <a href="demo.browse.php"><b>demo.browse.php</b></a>
<hr>
Other demos:<ul>
<?php
if ($dh = @opendir('.')) {
    while (
$file = @readdir($dh)) {
        if (
preg_match('#^demo\\..+\\.php$#', $file)) {
            echo
'<li><a href="'.htmlentities($file).'">'.htmlentities($file).'</a></li>';
        }
    }
}
?>
</ul>
</body>
</html>