akiosarkiz / mp3php
Package for manipulation mp3 files in php
1.2.0
2021-03-08 23:29 UTC
Requires
- php: ^7.4|^8.0
- ext-json: *
- ext-mbstring: *
Requires (Dev)
- phpunit/phpunit: ^9.3
This package is auto-updated.
Last update: 2024-10-09 07:39:39 UTC
README
Package for manipulation mp3 files in php.
Requires
- Php >= 7.4
- FFmpeg
- Support platform: linux
Example
use AkioSarkiz\Mp3Php\Mp3; // create object $mp3item = new Mp3('source.mp3'); // check is valid $mp3item->isValid(); // get duration of mp3 $mp3item->getDuration(); // add meta $mp3item->addMeta([ 'album' => 'custom album', ], 'source_with_meta.mp3'); // clear meta $mp3item->clearMeta('source_clear.mp3'); // get all info $mp3item->getInfo(); // get path $mp3item->getPath(); // get size mp3 $mp3item->size(); // get kbs of mp3 $mp3item->getKbs(); // convert mp3 to your kbs $mp3item->convert('source_64.mp3', 64);