定制 vkr/getid3 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

vkr/getid3

最新稳定版本:2.1.3

Composer 安装命令:

composer require vkr/getid3

包简介

This fork of phansys/GetId3 provides compatibility with PHP 7.0

README 文档

README

This fork of phansys/GetID3 is needed to provide compatibility with PHP 7. In fact, the library is already compatible with PHP 7.0, so pretty much the only change is updating dependencies in composer.json.

GetId3

Build Status

This fork of GetId3 library only works in PHP +5.3. It updates to PSR-2 / PSR-4 standards, adds namespaces and makes it installable by composer.

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 "phansys/getid3: ~2.1"

Quick use example reading audio properties

<?php
namespace My\Project;

use \GetId3\GetId3Core as GetId3;

class MyClass
{
    // ...
    private function myMethod()
    {
        $mp3File = '/path/to/my/mp3file.mp3';
        $getId3 = new GetId3();
        $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);
    }
}

统计信息

  • 总下载量: 232
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 32
  • 开发语言: PHP

其他信息

  • 授权协议: GPL
  • 更新时间: 2017-04-08