Well I have an old PC and a very large Music folder, which means loading times are through the roof. So becuase I was too lazy 😅 to create directories for each album and then move all those songs to that folder, I created this script which does it for me 😂.
Developed on Python 3.8.0 but I'm pretty sure it will work on any version >= 3.5
-
I'm using typing which was introduced in version 3.5.
-
This script uses 👏 @devsnd 👏 library
tinytag
which fetches the meta-data from the media files, check his library out for more functionalities ❗❗❗- Repository Link : https://github.com/devsnd/tinytag
Well this script uses only 1 package, so you either can pip install tinytag
or pip install -r requirements.txt
There seems to be a little bug with directory names that have backslashes - Fixed 👌\
, it's just about that regex expression which I'll fix.
- devsnd, creator of tinytag library.