Am 06.06.2018 um 17:42 schrieb Jeanette C.:
Jun 6 2018, Paul Davis has written:
what is running on the server?
Open SuSE
Leap 42.3 there are no audiotools that I can find. It's a
64bit system, just as my own Arch Linux. That was why I thought I could
try to build a statically linked version of id3v2 and vorbiscomment
myself.
Any ideas?
You could try a pure Perl or Python tag library.
For MP3 files with ID3 tags try this one:
http://eyed3.readthedocs.io/en/latest/installation.html
It is pure Python and has no dependencies on compiled Python modules. It
comes with the 'eye3D' command line tool.
If there's a recent Python version (3.4+) on the server, you should be
able to install it anywhere like this:
$ # make virtual environment for a separated installation
$ python -m venv env
$ source env/bin/activate
(env) $ pip install eye3D
Then, while the virtual env is activated, you can use the eye3D tool.
Chris