itm wrote: 
> eyeD3  tag info for one of his tracks is below:

Since your using eyeD3 (hopefully a newer Version) and only one single
damned Track with TSOP or TSO2 is needed to make this happen.

Its pretty simple..

    
- clear your actual playlist
- add all tracks from Elvis Costello to any of your player
- save that playlist under eg *pretty_name*
- run a shellscript like this (be warned it changes your tags)!!!
  

Code:
--------------------
    
  #!/bin/bash
  #
  playlistdir=$(grep "playlistdir:" 
/var/lib/squeezeboxserver/prefs/server.prefs|grep '/'|cut -d ' ' -f2)
  url=pretty_name.m3u
  
  grep -v "^#EXT" "$playlistdir/$url"> "$playlistdir/$url.txt"
  url="$playlistdir/$url.txt"
  while read -r line
  do eyeD3 "$line" --preserve-file-times --text-frame TSOP: --text-frame TSO2:
  done < "$url"
  rm "$url"
  
--------------------


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

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

Reply via email to