You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not really an id3 issue but more an appeal for help/advice using getID3...
Has anyone here managed to use getID3 within a Joomla CMS site. I want to be able to read and write ID3 tags in MP3 files from within a Joomla component.
The problem I seem to be up against is that Joomla5 now expects things to be namespaced and so although I can get it so I can get $getID3 = new getid3; to work, the subsequent call to $ThisFileInfo = $getID3->analyze($filename); fails with "Class "getid3_id3v2" not found"
and so on. I'm going round in circles and wondering if anyone else has got this working? It may be I need to register it as a library within Joomla or something?
The text was updated successfully, but these errors were encountered:
Not really an id3 issue but more an appeal for help/advice using getID3...
Has anyone here managed to use getID3 within a Joomla CMS site. I want to be able to read and write ID3 tags in MP3 files from within a Joomla component.
The problem I seem to be up against is that Joomla5 now expects things to be namespaced and so although I can get it so I can get
$getID3 = new getid3;
to work, the subsequent call to$ThisFileInfo = $getID3->analyze($filename);
fails with "Class "getid3_id3v2" not found"and so on. I'm going round in circles and wondering if anyone else has got this working? It may be I need to register it as a library within Joomla or something?
The text was updated successfully, but these errors were encountered: