laoqianjunzi/getid3
最新稳定版本:1.0
Composer 安装命令:
composer require laoqianjunzi/getid3
包简介
This fork of GetId3 library updates to PSR-2 / PSR-4 CS, adds namespaces and makes it installable by composer.
关键字:
README 文档
README
GetId3
Useful links
License
For license info please read Resources/doc/license.txt
For commercial license read Resources/doc/license.commercial.txt
Installation via composer
Run composer to install the library:
$ composer require "laoqianjunzi/getid3: ~2.1"
Quick use example reading audio properties
<?php
namespace My\Project;
use GetId3\GetId3Core;
class MyClass
{
// ...
private function myMethod()
{
$mp3File = '/path/to/my/mp3file.mp3';
$getId3 = new GetId3Core();
$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);
}
}
统计信息
- 总下载量: 5
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-09-20