i've a short question. i'm using the following code to write my mp3 tags, nothing special so far. all data comes from a form and is valid UTF-8, but since id3v1 tags in UTF-8 are invalid according to the specs, i wonder if the encoding to ISO is done internally or if do have to take care about?
Code: Select all
$id3 = new getID3;
$id3->setOption(array('encoding'=>'UTF-8'));
$w = new getid3_writetags;
$w->tag_encoding = 'UTF-8';
$w->filename = $some_file_name;
$w->tagformats = array('id3v1', 'id3v2.3');
// etc...