Add performance information

This commit is contained in:
wapmorgan 2017-01-10 03:24:40 +03:00
parent b32caaff57
commit f7bd4f38d8
2 changed files with 31 additions and 5 deletions

View File

@ -2,6 +2,10 @@
The fastest PHP library to get mp3 tags&meta.
[![Composer package](http://xn--e1adiijbgl.xn--p1acf/badge/wapmorgan/mp3info)](https://packagist.org/packages/wapmorgan/mp3info)
[![Latest Stable Version](https://poser.pugx.org/wapmorgan/mp3info/v/stable)](https://packagist.org/packages/wapmorgan/mp3info)
[![Total Downloads](https://poser.pugx.org/wapmorgan/mp3info/downloads)](https://packagist.org/packages/wapmorgan/mp3info)
[![Latest Unstable Version](https://poser.pugx.org/wapmorgan/mp3info/v/unstable)](https://packagist.org/packages/wapmorgan/mp3info)
[![License](https://poser.pugx.org/wapmorgan/mp3info/license)](https://packagist.org/packages/wapmorgan/mp3info)
This class extracts information from mpeg/mp3 audio:
@ -47,8 +51,10 @@ echo 'Song '.$audio->tags1['song'].' from '.$audio->tags1['artist'].PHP_EOL;
# Performance
* Typically it parses one mp3-file with size around 6-7 mb in less that 0.001 sec.
* List of 112 files with constant & variable bitRate with total duration 5:22:28 are parsed in 1.76 sec.
* Typically it parses one mp3-file with size around 6-7 mb in less than 0.001 sec.
* List of 112 files with constant & variable bitRate with total duration 5:22:28 are parsed in 1.76 sec. *getId3* library againts exactly the same mp3 list works for 8x-10x slower - 9.9 sec.
* If you want, there's a very easy way to compare. Just install `nass600/get-id3` package and run console scanner against any folder with audios. It will print time that Mp3Info spent and that getId3.
# Console scanner
To test Mp3Info you can use built-in script that scans dirs and analyzes all mp3-files inside them. To launch script against current folder:

View File

@ -4,6 +4,8 @@ require __DIR__.'/../vendor/autoload.php';
use wapmorgan\Mp3Info\Mp3Info;
$compare = class_exists('getID3');
if ($argc == 1)
die('Specify file names to scan');
@ -29,17 +31,35 @@ function analyze($filename, &$total_duration, &$total_parse_time) {
$total_duration += $audio->duration;
$total_parse_time += $audio->_parsingTime;
}
function analyzeId3($filename, &$total_parse_time) {
static $ID3;
if ($ID3 === null) $ID3 = new getID3();
$t = microtime(true);
$info = $ID3->analyze($filename);
$parse_time = microtime(true) - $t;
echo sprintf('%15s | %4s | %7s | %0.1fkHz | %-11s | %-10s | %.5f', substrIfLonger(basename($filename), 15), $info['playtime_string'], $info['audio']['bitrate_mode'] == 'vbr' ? 'vbr' : floor($info['audio']['bitrate'] / 1000).'kbps', ($info['audio']['sample_rate'] / 1000), isset($info['tags']['title']) ? substrIfLonger($info['tags']['title'], 11) : null, isset($info['tags']['artist']) ? substrIfLonger($info['tags']['artist'], 10) : null, $parse_time).PHP_EOL;
$total_parse_time += $parse_time;
}
array_shift($argv);
echo sprintf('%15s | %4s | %7s | %7s | %11s | %10s | %4s', 'File name', 'dur.', 'bitrate', 'sample', 'song', 'artist',
'time').PHP_EOL;
$total_duration = $total_parse_time = 0;
$total_duration = $total_parse_time = $id3_parse_time = 0;
foreach ($argv as $arg) {
if (is_dir($arg)) {
foreach (glob(rtrim($arg, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR.'*.mp3') as $f) {
if (is_file($f))
if (is_file($f)) {
analyze($f, $total_duration, $total_parse_time);
if ($compare) analyzeId3($f, $id3_parse_time);
}
}
} else if (is_file($arg))
} else if (is_file($arg)) {
analyze($arg, $total_duration, $total_parse_time);
if ($compare) analyzeId3($f, $id3_parse_time);
}
}
echo sprintf('%42s | %34s', 'Total duration: '.formatTime($total_duration), 'Total parsing time: '.round($total_parse_time, 5)).PHP_EOL;
if ($compare) echo sprintf('%79s', 'Total getId3 parsing time: '.round($id3_parse_time, 5)).PHP_EOL;