eCo wrote: 
> if added fewer at a time, it wouldn't save the final playlist showing
> "error saving playlist LP_Rips "error"".  Perhaps it's a resource
> limitation.  
> 
Unfortunately, this seems to be the case. LMS doesn't accept such
requests:
"Failed to load resource: the server responded with a status of 414
(Request-URI Too Large)"

> 
> I also noticed it was throwing in albums in the search results that
> seemingly had nothing related to the search terms.  Finally, the search
> term strings ignored spaces and case.  I use RM as an abbreviation for
> remastered, so in foobar2000 I can search for the string " RM " with
> high specificity.  But this editor would ignore the spaces and case
> sensitivity to match album titles with "rm" anywhere in the string
> pulling in many unwanted titles.
> 
LMSplaylistEditor uses LMS' search, so the plugin can't really change
this behaviour.

> 
> I had high hopes for the python script, but after I figured out the
> syntax, it would only respond "Invalid playlist format (First line:
> ...".  That's irritating since the format is what I want it to fix. 
> 
That's a bit strange.
Check the first line of your m3u file - it should be
#EXTM3U

anyway, you can change the script to accept any encoding by changing
line 394 from:

Code:
--------------------
    
                elif args.subparser_name == 'fixm3u':
                        tracks = parsem3u( args.infile, check_files = True)
  
--------------------

to

Code:
--------------------
    
                elif args.subparser_name == 'fixm3u':
                        tracks = parsem3u( args.infile, check_files = True, 
file_encoding="utf-8")
  
--------------------

where file_encoding can have any value listed 'here'
(https://docs.python.org/3/library/codecs.html#standard-encodings)



'Various SW' (https://www.nexus0.net/pub/sw/): Web Interface | TUI |
Playlist Editor / Generator | Music Classification | Similar Music |
Announce | EventTrigger | DB Optimizer | Image Enhancer | Chiptunes |
LMSlib2go | ...
'Various HowTos' (https://www.nexus0.net/pub/documents/LMS/): build a
self-contained LMS | Bluetooth/ALSA | Control LMS with any device | ...
------------------------------------------------------------------------
Roland0's Profile: http://forums.slimdevices.com/member.php?userid=56808
View this thread: http://forums.slimdevices.com/showthread.php?t=114635

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

Reply via email to