stevenewbs / gmpydl

Google Music Python Downloader
MIT License
22 stars 8 forks source link

Added 'uploader_id' setting for gmusicapi login #19

Closed cbernander closed 1 year ago

cbernander commented 4 years ago

I encountered this gmusicapi issue when trying to run gmpydl:

https://github.com/simon-weber/gmusicapi/issues/408

The solution was to manually specify the _uploaderid parameter for the Musicmanager.login() call. I added this parameter as a setting in the config file so it can be manually specified like this:

uploader_id 01:23:45:67:89:AB

As per the gmusicapi documentation, the _uploaderid should be specified as an uppercase, colon-separated MAC address - typically this would be the local host's MAC address incremented by one.

I hope you find this PR useful.