lebauce / quodlibet

Automatically exported from code.google.com/p/quodlibet
1 stars 0 forks source link

ex falso: notify of missing tags #60

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I must tag from scratch quite a many tagless files I must tag, and for
consistency, I'd like none of them to have some tag missing. I'd consider
the essential tags to be: TITLE, ARTIST, ALBUM, TRACKNUMBER, DATE, GENRE,
REPLAYGAIN_*

Currently Ex falso doesn't even wink if a tag is missing. My proposition is:

- let the user configure a couple of tags all music files must have

- display the missing tags in the tag editor window as a "warning"
  - I'd suggest implementing it as a list of missing tags in small, red
text at the bottom of the window.

Original issue reported on code.google.com by hha...@gmail.com on 26 Nov 2008 at 2:05

GoogleCodeExporter commented 9 years ago
This should implemented as a plugin. I would suggest a simple implementation 
similar
to the following. It won't turn things red, though.

  def plugin_songs(self, songs):
    for song in songs:
      for tag in ["title", "artist", ...]:
        song.setdefault(tag, "(missing)")

Original comment by mur...@gmail.com on 28 Nov 2008 at 10:03

GoogleCodeExporter commented 9 years ago
Is such a plugin available these days? 

(IMO it should be a core-feature anyway. It would make tagging "sooo much" 
easier ;) )

Original comment by quas...@gmail.com on 3 Dec 2010 at 12:37