mhor/php-mp3info

Simple class to parse mp3info command ID3 tags

v1.0.0 2017-12-18 12:33 UTC

This package is auto-updated.

Last update: 2024-03-14 23:38:39 UTC


README

Build Status Codacy Scrutinizer Code Quality Code Coverage Latest Stable Version Total Downloads Latest Unstable Version License Dependency Status PullReview stats

Introduction

PHP class to read ID3v1 tags with mp3info command

Installation

You should install mp3info:

On linux:

$ sudo apt-get install mp3info

On Mac:

$ brew install mp3info

To use this class install it through Composer, add:

$ composer require mhor/php-mp3info

How to use

<?php
//...
use Mhor\PhpMp3Info\PhpMp3Info;
//...
$mp3Info = new PhpMp3Info();
$mp3Tags = $mp3Info->extractId3Tags('music.mp3');
echo $mp3Tags->getAlbum();
echo $mp3Tags->getTitle();
echo $mp3Tags->getArtist();
echo $mp3Tags->getTrack();
echo $mp3Tags->getBitrate();
echo $mp3Tags->getLength();
//...

LICENSE

See LICENSE for more information