I use sound-juicer to rip to a temporary directory.  Then I run
Musicbrainz Picard tagger to add all my metadata and move/rename the
files to my main music storage folder.

I also made one small python patch to Picard that replaces spaces in
filenames with underscores.  (when you enable "write windows-safe
filenames")

/usr/share/python-support/picard/picard/util


Code:
--------------------
    
  --- __init__.py.orig  2008-12-16 18:51:28.266225898 -0800
  +++ __init__.py       2008-12-16 18:51:50.785721666 -0800
  @@ -167,7 +167,7 @@
  """Replace non-ASCII characters from ``string`` by ``repl``."""
  return _re_non_ascii.sub(repl, string)
  
  -_re_win32_incompat = re.compile(r'["*:<>?|]', re.UNICODE)
  +_re_win32_incompat = re.compile(r'["*:<>?| ]', re.UNICODE)
  def replace_win32_incompat(string, repl=u"_"):
  """Replace win32 filename incompatible characters from ``string`` by
  ``repl``."""
  
--------------------


-- 
SuperQ
------------------------------------------------------------------------
SuperQ's Profile: http://forums.slimdevices.com/member.php?userid=2139
View this thread: http://forums.slimdevices.com/showthread.php?t=66724

_______________________________________________
ripping mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/ripping

Reply via email to