使用PHP设置MP3的专辑封面。

10

我正在寻找使用PHP设置mp3专辑封面的最佳或任何方法。

有建议吗?

10个回答

5

专辑封面艺术是一个数据框,由ID3v2规范中的“附加图片”标识,而getID3()现在是使用纯PHP编写所有可能的ID3v2数据框的唯一方法。

看看这个源代码: http://getid3.sourceforge.net/source/write.id3v2.phps

在源代码中搜索此文本:

// 4.14  APIC Attached picture

有一段代码负责写入专辑封面。

另一种方式,似乎不如纯PHP慢,是使用一些外部应用程序,由PHP脚本启动。如果您的服务旨在承受高负载,则二进制编译工具将是更好的解决方案。


3

更好(更快)的方法是通过外部应用程序和PHP exec()函数执行命令。我建议使用eyeD3


不知道我现在使用的共享服务器是否可以做到这一点,但当我自己搭建时会很有用。谢谢。 - ian

1

使用Composer安装getId3 composer require james-heinrich/getid3 然后使用以下代码更新您的id3标签

// Initialize getID3 engine
$getID3 = new getID3;

// Initialize getID3 tag-writing module
$tagwriter = new getid3_writetags;
$tagwriter->filename = 'path/to/file.mp3';
$tagwriter->tagformats = array('id3v2.4');
$tagwriter->overwrite_tags    = true;
$tagwriter->remove_other_tags = true;
$tagwriter->tag_encoding      = 'UTF-8';

$pictureFile = file_get_contents("path/to/image.jpg");

$TagData = array(
    'title' => array('My Title'),
    'artist' => array('My Artist'),
    'album' => array('This Album'),
    'comment' => array('My comment'),
    'year' => array(2018),
    'attached_picture' => array(
        array (
            'data'=> $pictureFile,
            'picturetypeid'=> 3,
            'mime'=> 'image/jpeg',
            'description' => 'My Picture'
        )
    )
);

$tagwriter->tag_data = $TagData;

// write tags
if ($tagwriter->WriteTags()){
    return true;
}else{
    throw new \Exception(implode(' : ', $tagwriter->errors));
}

1

我不仅会分享更新专辑封面的代码,还会在这里发布我的整个getID3 MP3包装类,以便您根据需要使用

用法

$mp3 = new Whisppa\Music\MP3($mp3_filepath);

//Get data
$mp3->title
$mp3->artist
$mp3->album
$mp3->genre

//set properties
$mp3->year = '2014';

//change album art
$mp3->set_art(file_get_contents($pathtoimage), 'image/jpeg', 'New Caption');//sets front album art

//save new details
$mp3->save();

<?php

namespace Whisppa\Music;

class MP3
{
    protected static $_id3;

    protected $file;
    protected $id3;
    protected $data     = null;


    protected $info =  ['duration'];
    protected $tags =  ['title', 'artist', 'album', 'year', 'genre', 'comment', 'track', 'attached_picture', 'image'];
    protected $readonly_tags =  ['attached_picture', 'comment', 'image'];
                                //'popularimeter' => ['email'=> 'music@whisppa.com', 'rating'=> 1, 'data'=> 0],//rating: 5 = 255, 4 = 196, 3 = 128, 2 = 64,1 = 1 | data: counter


    public function __construct($file)
    {
        $this->file = $file;
        $this->id3  = self::id3();
    }

    public function update_filepath($file)
    {
        $this->file = $file;
    }

    public function save()
    {
        $tagwriter = new \GetId3\Write\Tags;
        $tagwriter->filename = $this->file;
        $tagwriter->tag_encoding = 'UTF-8';
        $tagwriter->tagformats = ['id3v2.3', 'id3v1'];
        $tagwriter->overwrite_tags = true;
        $tagwriter->remove_other_tags = true;

        $tagwriter->tag_data = $this->data;

        // write tags
        if ($tagwriter->WriteTags())
            return true;
        else
            throw new \Exception(implode(' : ', $tagwriter->errors));
    }


    public static function id3()
    {
        if(!self::$_id3)
            self::$_id3 = new \GetId3\GetId3Core;

        return self::$_id3;
    }

    public function set_art($data, $mime = 'image/jpeg', $caption = 'Whisppa Music')
    {
        $this->data['attached_picture'] = [];

        $this->data['attached_picture'][0]['data']            = $data;
        $this->data['attached_picture'][0]['picturetypeid']   = 0x03;    // 'Cover (front)'    
        $this->data['attached_picture'][0]['description']     = $caption;
        $this->data['attached_picture'][0]['mime']            = $mime;

        return $this;
    }

    public function __get($key)
    {
        if(!in_array($key, $this->tags) && !in_array($key, $this->info) && !isset($this->info[$key]))
            throw new \Exception("Unknown property '$key' for class '" . __class__ . "'");

        if($this->data === null)
            $this->analyze();

        if($key == 'image')
            return isset($this->data['attached_picture']) ? ['data' => $this->data['attached_picture'][0]['data'], 'mime' => $this->data['attached_picture'][0]['mime']] : null;
        else if(isset($this->info[$key]))
            return $this->info[$key];
        else
            return isset($this->data[$key]) ? $this->data[$key][0] : null;
    }

    public function __set($key, $value)
    {
        if(!in_array($key, $this->tags))
            throw new \Exception("Unknown property '$key' for class '" . __class__ . "'");
        if(in_array($key, $this->readonly_tags))
            throw new \Exception("Tying to set readonly property '$key' for class '" . __class__ . "'");

        if($this->data === null)
            $this->analyze();

        $this->data[$key] = [$value];
    }

    protected function analyze()
    {
        $data = $this->id3->analyze($this->file);

        $this->info =  [
                'duration' => isset($data['playtime_seconds']) ? ceil($data['playtime_seconds']) : 0,
            ];

        $this->data = isset($data['tags']) ? array_intersect_key($data['tags']['id3v2'], array_flip($this->tags)) : [];
        $this->data['comment'] = ['http://whisppa.com'];

        if(isset($data['id3v2']['APIC']))
            $this->data['attached_picture'] = [$data['id3v2']['APIC'][0]];
    }


}

注意

目前还没有任何错误处理代码。当前,我只是在尝试运行任何操作时依赖于异常。 请随意修改并使用。需要 PHP GETID3。


\GetId3\GetId3Core 是什么? - Mahmoud.Eskandari
请问您能否确认一下,您正在使用哪个软件包? - Riosant
@Riosant,很久没见了,但这就是我使用的 https://www.getid3.org/。 - frostymarvelous

1

不确定这是否仍然是一个问题,但:

非常完整的getid3()(http://getid3.org)项目将解决您所有的问题。查看this论坛帖子以获取更多信息。


0

这里是使用getID3添加图像和ID3数据的基本代码。(@frostymarvelous的包装器包含等效的代码,但我认为展示基础知识很有帮助。)

<?php
    // Initialize getID3 engine
    $getID3 = new getID3;

    // Initialize getID3 tag-writing module
    $tagwriter = new getid3_writetags;
    $tagwriter->filename = 'audiofile.mp3';
    $tagwriter->tagformats = array('id3v2.3');
    $tagwriter->overwrite_tags    = true;
    $tagwriter->remove_other_tags = true;
    $tagwriter->tag_encoding      = $TextEncoding;

    $pictureFile=file_get_contents("image.jpg");

    $TagData = array(
        'title' => 'My Title',
        'artist' => 'My Artist',        
        'attached_picture' => array(   
            array (
                'data'=> $pictureFile,
                'picturetypeid'=> 3,
                'mime'=> 'image/jpeg',
                'description' => 'My Picture'
            )
        )
    );
?>

0

@carrp,除非每个value属性都是一个数组,否则$Tagdata代码将无法工作,例如。

$TagData = array(
    'title' => ['My Title'],
    'artist' => ['My Artist'],        
    'attached_picture' => array(   
        array (
            'data'=> $pictureFile,
            'picturetypeid'=> 3,
            'mime'=> 'image/jpeg',
            'description' => 'My Picture'
        )
    )
);

0

你可以查看getID3()项目。我不能保证它能处理图像,但它声称能够为MP3写入ID3标签,所以我认为这将是你最好的选择。


-1
使用PHP的内置函数:
<?php
    $tag = id3_get_tag( "path/to/example.mp3" );
    print_r($tag);
?>

-3

我认为用PHP实现这个功能可能不太可能。我的意思是,我想任何事情都有可能,但它可能不是一个本地的PHP解决方案。从PHP文档中,我认为唯一可以更新的项目是:

  • 标题
  • 艺术家
  • 专辑
  • 年份
  • 流派
  • 评论
  • 曲目

抱歉,伙计。也许Perl、Python或Ruby可能有一些解决方案。

我不确定你是否熟悉Perl(我个人不喜欢它,但是它在这方面很擅长...)。这里有一个脚本,似乎能够拉取和编辑MP3中的专辑封面:http://www.plunder.com/-download-66279.htm


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接