I want to rename mp3 files on my mac using python before importing them to iTunes. So I need to change the "Title" of the file, not the file's name. As in, I want to change "Al-Fatihah" in the picture below to "new_title".
Most online resources and question that I found suggest using either external libraries or using os.stat()
which only gives info about modification and creation of the file (second picture below), unless I'm misunderstanding something. I was wondering if there is a way to do so without having to download extra libraries as I'm not always sure which libraries are safe.
Thanks!