garym wrote: 
> yep, can be a mess. I retag my Grateful Dead shows by year of
> performance and then put year of release in comment tag. In LMS, my
> music, you can select folder browsing. That might work better for all
> your concert shows.

I found a way to do it. I am using the plugin Sqlite Virtual Libraries
with the following virtual library definition. My bootlegs are stored in
a directory named 00-Bootlegs. I could tighten it up some but it works
fine for what I need.


Code:
--------------------
    
  -- VirtualLibraryName: Bootlegs
  insert or ignore into library_track (library, track)
  select '%s', tracks.id
  from tracks
  where 
  tracks.url like '%%00-Bootleg%%'
  and tracks.audio = 1
  group by tracks.id
  
  
--------------------


------------------------------------------------------------------------
Syco54645's Profile: http://forums.slimdevices.com/member.php?userid=73039
View this thread: http://forums.slimdevices.com/showthread.php?t=116877

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

Reply via email to