JamesHeinrich / getID3

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

Integrating into a Joomla 5 site #443

Open rogercreagh opened 4 months ago

rogercreagh commented 4 months ago

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?