This package is a wrapper around james-heinrich/getid3.
Via Composer
$ composer require owen-oj/laravel-getid3
If you use Laravel 5.5+ you don't need the following step. If not, once package is installed, you need to register the service provider. Open config/app.php and add the following to the providers key.
Owenoj\LaravelGetId3\GetId3ServiceProvider::class,
use Owenoj\LaravelGetId3\GetId3;
//instantiate class with file
$track = new GetId3(request()->file('file'));
// Use static methods:
$track = GetId3::fromUploadedFile(request()->file('file'));
$track = GetId3::fromDiskAndPath('local', '/some/file.mp3');
$track = GetId3::fromDiskAndPath('s3', '/some/file.mp3'); // even works with S3
//get all info
$track->extractInfo();
//get title
$track->getTitle();
//get playtime
$track->getPlaytime();
We can also extract the artwork from the file
//calling this method will return artwork in base64 string
$track->getArtwork();
//Optionally you can pass can pass `true` to the method to get a jpeg version. This will return an UploadedFile instance
$track->getArtwork(true);
Get an array of all available metadata of file
Get the artist of the track
Get the title of the track
Get name of Album
Get a tracks total playtime
Get total playtime in seconds
Get the artwork of the track
Get the list of genres
Get the composers of the track
Get the track number out of total number on album eg. 1/12
Get copyright information of the track
Get the file format of the file eg. mp4
Please see the changelog for more information on what has changed recently.
$ composer test
Please see contributing.md for details and a todolist.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
MIT. Please see the license file for more information.