phansys/getid3

This package is abandoned and no longer maintained. The author suggests using the james-heinrich/getid3 package instead.

This fork of GetId3 library updates to PSR-2 / PSR-4 CS, adds namespaces and makes it installable by composer.

v2.0.0-BETA1 2012-12-04 17:31 UTC

This package is auto-updated.

Last update: 2022-02-01 12:21:16 UTC


README

Build Status

This fork of GetId3 library only works in PHP +5.3.3. It updates to PSR-2 / PSR-4 standards, adds namespaces and makes it installable by composer.

Useful links

License

For license info please read LICENSE

For commercial license read Resources/doc/license.commercial.txt

Installation via composer

Run composer to install the library:
$ composer require "phansys/getid3: ^2.1@dev"

Quick use example reading audio properties

<?php
namespace My\Project;

use \GetId3\GetId3Core as GetId3;

class MyClass
{
    // ...
    private function myMethod()
    {
        $mp3File = '/path/to/my/mp3file.mp3';
        $getId3 = new GetId3();
        $audio = $getId3
            ->setOptionMD5Data(true)
            ->setOptionMD5DataSource(true)
            ->setEncoding('UTF-8')
            ->analyze($mp3File)
        ;

        if (isset($audio['error'])) {
            throw new \RuntimeException(sprintf('Error at reading audio properties from "%s" with GetId3: %s.', $mp3File, $audio['error']));
        }
        $this->setLength(isset($audio['playtime_seconds']) ? $audio['playtime_seconds'] : '');

        // var_dump($audio);
    }
}