我使用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')
但是它没有在Album Artist中插入任何内容。知道怎么插入这个吗?
尝试设置band
而不是album_artist