ubuntu-flutter-community / musicpod

Music, radio, television and podcast player for Ubuntu, Windows, MacOs and maybe soon Android
GNU General Public License v3.0
441 stars 52 forks source link

Drag and Drop Album Art #791

Open thomas992 opened 4 months ago

thomas992 commented 4 months ago

One should be able to drag the album art into MusicPod to change the album art for all the songs in the album.

Feichtmeier commented 2 months ago

hi 👋 For this the tag reading dart lib I use, needs also tag writing Which is currently not implemented

@ClementBeal is this something you planed at some point?

dongfengweixiao commented 2 months ago

hi 👋 For this the tag reading dart lib I use, needs also tag writing Which is currently not implemented

@ClementBeal is this something you planed at some point?

I believe that rewriting modified metadata back into audio files is not a good solution, especially for MP3 format audio files. I suggest that after scanning all audio files, the metadata should be recorded in an independent database. Any modifications to the metadata would then be read and write operations to the database, avoiding the need to write to the source files.

Another benefit of this approach is that you don't need to scan the folder every time the application starts. The scan should only be performed after a change in the folder is detected.