2017 © Pedro Peláez
 

library php-mp3info

Simple class to parse mp3info command ID3 tags

image

mhor/php-mp3info

Simple class to parse mp3info command ID3 tags

  • Monday, December 18, 2017
  • by mhor
  • Repository
  • 2 Watchers
  • 6 Stars
  • 748 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 5 Versions
  • 1 % Grown

The README.md

Php-Mp3Info

Build Status Codacy Scrutinizer Code Quality Code Coverage Latest Stable Version Total Downloads Latest Unstable Version License Dependency Status PullReview stats, (*1)

Introduction

PHP class to read ID3v1 tags with mp3info command, (*2)

Installation

You should install mp3info:, (*3)

On linux:, (*4)

$ sudo apt-get install mp3info

On Mac:, (*5)

$ brew install mp3info

To use this class install it through Composer, add:, (*6)

$ 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, (*7)

The Versions

18/12 2017

dev-master

9999999-dev

Simple class to parse mp3info command ID3 tags

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar mhor

18/12 2017

v1.0.0

1.0.0.0

Simple class to parse mp3info command ID3 tags

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar mhor

27/02 2014

v0.3

0.3.0.0

Simple class to parse mp3info command ID3 tags

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar mhor

16/02 2014

v0.2

0.2.0.0

Simple class to parse mp3info command ID3 tags

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar mhor

10/02 2014

v0.1

0.1.0.0

Simple class to parse mp3info command ID3 tags

  Sources   Download

MIT

The Requires

 

by Avatar mhor