JamesHeinrich / getID3

http://www.getid3.org/
Other
1.15k stars 245 forks source link

write tags by frame name #396

Closed foremtehan closed 2 years ago

foremtehan commented 2 years ago

I just wanted to know, how can i pass frame name instead of arbitrary words ?

I mean:

$write->tag_data = [
    'artist' => ['My Artist']
];

instead pass TPE1 like:

$write->tag_data = [
    'TPE1' => ['My Artist']
];

which is not working at the moment