frank1969 wrote: 
> I think that's not the way it would work.
> Since its "my" way i know it works ;-)

frank1969 wrote: 
> I put the "new ones" in a special folder till I have time to fix them .
> of course I don't mix "fixed tags" with others.
> But I don't have this much time - so since April there are 48.312 files
> in this special directory (the new ones since april)
> ok...

frank1969 wrote: 
> If I did it Your way - I would fix, put the new ones in a special folder
> (what I already do, see above) ... and don't import them till they're
> fixed in some months and can't hear them ... - this would spoil the fun
> of using lms completely, I think You understand...
Nope ;-)

eg your Folders look like


Code:
--------------------
    playlist
  - Artist
  --|-ABBA
  --|-Ayumi Hamasaki
  /snip
  \snap
  --|ZZ-Top
  
--------------------


you need something like
a folder named

- Fixit
-- |-Abba
and some cmd like

Code:
--------------------
    
  if exist ..\playlist\unfixed.m3u del ..\playlist\unfixed.m3u
  cd /d fixit
  for /f "delims=" %%a in ('dir /b /s *.mp3') do echo 
"tmp://%%a">>..\playlist\unfixed.m3u
--------------------


and your done.
You even (may should) add one playlist for each Folder instead of that
big playlist.

Code:
--------------------
    for /f "delims=" %%a in ('dir *.mp3 /b /s') do echo "tmp://%%a">> 
"..\playlist\%~na.m3u"
--------------------


That should work - even when its -untested-


------------------------------------------------------------------------
DJanGo's Profile: http://forums.slimdevices.com/member.php?userid=1516
View this thread: http://forums.slimdevices.com/showthread.php?t=106405

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

Reply via email to