我使用getID3()库将元数据插入到没有元数据的歌曲中。
我能够插入所有的标签,除了专辑艺术家,这是非常重要的我。
在demo.simple.write.php中,我给出了歌曲的细节如下:
$TagData = array(
'title' => array('Emotion'),
'artist' => array('Priyesh Vakil'),
'album' => array('Radiance With Ragas Vol. 1'),
'year' => array('2004'),
'genre' => array('World Instrumental'),
'comment' => array('excellent!'),
'track' => array('04/16'),
);我尝试添加:
'album_artist' => array('Priyesh Vakil')但它不会在专辑Artist中插入任何内容。你知道怎么插入这个吗?任何帮助都是非常感谢的。
发布于 2013-01-19 17:59:12
尝试设置band而不是album_artist。
https://stackoverflow.com/questions/14191024
复制相似问题