Haben Sie sich Google Play Music angesehen ?
Es kann Ihre lokale Musik synchronisieren und Sie haben Zugriff auf Ihr Android-Handy.
https://play.google.com/store/music
Es gibt eine Python-Bibliothek, mit der Sie Ihre Wiedergabeliste synchronisieren können, um Musik abzuspielen. Schauen Sie hier:
https://github.com/Tyris/m3uGoogleMusicSync
Aktualisieren
Sie benötigen grundlegende Python- / Programmierkenntnisse und werden diese wahrscheinlich nicht synchronisieren .
Wenn Sie sich jedoch nicht weigern, Google Play zu verwenden, ist dies eine sehr unkomplizierte Methode, um Ihre Musik zwischen mehreren Geräten zu organisieren und zu synchronisieren.
Hier ist ein Beispiel, wie die Bibliothek funktionieren sollte:
from musicsync import MusicSync
ms = MusicSync()
# Will prompt for Email and Password - if 2-factor auth is on you'll need to generate a one-time password
# The first time you use this (or another script that uses gmusicapi) you will be prompted to authenticate via an OAuth browser window - you will need to copy paste the URL (be careful - under Windows sometimes spaces are inserted into the copy/paste at new lines)
# To sync a playlist
ms.sync_playlist("c:/path/to/playlist.m3u")
# To sync a playlist including removing files that are no longer listed locally
ms.sync_playlist("/path/to/playlist.m3u", remove_missing=True)
# To delete a song from the cloud (provided only as convenience - must know the song ID)
ms.delete_song("song_id")
Der Code ist nicht kompliziert und sollte auch für Anfänger bearbeitet werden können.
Viel Glück und ich würde mich freuen, wenn und wie Sie es geschafft haben, dass es funktioniert!