I want to add local music files to an iTunes playlist on Windows 10. All other questions are from 2010, or they use Applescript, which is unavailable on Windows.
I'd like to do this with Python, but I would be fine with any language.
Is there a way to do this?
The iTunes COM library can be used to interface with iTunes. You can find out more by downloading the documentation from Apple's developer website (search for "iTunes"). You need a free developer account. To open a local version of the documentation, you may need to check this:
An online version of the iTunes COM documentation can be found here.
To see how to use Windows COM with Python, check this out. It makes use of the
win32com.client
library.To give you an idea of how it's used, here's an example from a program of mine: