Home of the Squeezebox™ & Transporter® network music players.
Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 28
  1. #11
    Senior Member iPhone's Avatar
    Join Date
    Oct 2007
    Location
    Atlanta
    Posts
    2,996
    Quote Originally Posted by zapranoth88 View Post
    OK. Using a number for Maximum Playlist Length doesn't work, and following the info popup and using a zero doesn't work. But, a blank space does. Of course, it is intuitively obvious!

    I wonder if any other character might work the same way? Might have to play with this when I have more time.

    But, thanks folks for the help. Very much appreciated.

    z88
    Just to make sure something weird isn't going on, did you try a more realistic number like 2500 or 4000? Or are you saying no number worked? I haven't had an issue with any number under 10000.
    iPhone
    Media Room:
    ModWright Platinum Signature Transporter, VTL TL-6.5 Signature Pre-Amp, Ayre MX-R Mono's, VeraStarr 6.4SE 6-channel Amp, Vandersteen Speakers: Quatro Wood Mains, VCC-5 Reference Center, four VSM-1 Signatures, Video: Runco RS 900 CineWide AutoScope 2.35:1, Vandersteen V2W Subwoofer

    Living Room:
    Transporter, ADCOM GTP-870HD, Cinepro 3K6SE III Gold, Vandersteen Model 3A Signature, Two 2Wq subs, VCC-2, Two VSM-1

    Office: Touch with Vandersteen VSM-1s
    Kitchen: Touch in-wall mount w/ Thiel Powerpoint 1.2s
    Bedroom: Squeezebox BOOM
    Bathroom: Squeezebox Radio
    Around the House: SliMP3, SB1, SB2, SB3
    Ford Thunderbird: Duet, Mac Mini
    Ford Expedition: SB Touch, USB drive

  2. #12
    Senior Member
    Join Date
    Sep 2006
    Location
    Zurich, Switzerland
    Posts
    794
    I really cannot see how ' ' (space) or '0' would make a difference as the preference value. All the code that uses this just tests it as a boolean (first) and ' ', '0', 0 and undef are all false in perl.

    In my own tests, and those of a colleague, 0 always works as expected.

    It may be that a (playlist) rescan is needed after changing the preference value.

  3. #13
    Senior Member
    Join Date
    Apr 2005
    Location
    Buckinghamshire, England
    Posts
    9,983

    Thumbs up

    I've just retested this on 7.6 XP using the default skin and the preference setting works perfectly and exactly as it should.
    You want to see the signal path BEFORE it gets onto a CD/vinyl...it ain't what you'd call minimal...
    Touch(wired/W7)+Teddy Pardo PSU - Audiolense 3.3/2.0+INGUZ DRC - MF M1 DAC - Linn 5103 - full Aktiv 5.1 system (6x LK140's, ESPEK/TRIKAN/KATAN/SEIZMIK 10.5), Pekin Tuner, Townsend Supertweeters,VdH Toslink,Kimber 8TC Speaker & Chord Signature Plus Interconnect cables
    Stax4070+SRM7/II phones
    Kitchen Boom, Outdoors: SB Radio, Harmony One remote for everything.

  4. #14
    Senior Member
    Join Date
    May 2005
    Location
    In a house
    Posts
    1,629
    Quote Originally Posted by awy View Post
    ... and ' ', '0', 0 and undef are all false in perl.
    As a minor correction, the non-empty string *' '* is considered TRUE:

    Code:
    $ cat booltest.pl
    
    printf "Boolean truth?  *$_* : %s\n", ($_ ? 'TRUE' : 'FALSE') foreach (0, '0', '', undef, ' ');
    
    $ perl booltest.pl
    Boolean truth?  *0* : FALSE
    Boolean truth?  *0* : FALSE
    Boolean truth?  ** : FALSE
    Boolean truth?  ** : FALSE
    Boolean truth?  * * : TRUE

  5. #15
    Senior Member
    Join Date
    Sep 2006
    Location
    Zurich, Switzerland
    Posts
    794
    Yes, of course. Thanks. Hangs head in shame.

  6. #16
    This seems like an unnecessary way to drive less-than-expert users crazy. How many users go to the Advanced/Performance menu?

    If someone has a 1000 song playlist, why assume they don't want it? If the performance hit is really big, then at least warn the user somehow the first time they try to scan a larger playlist. But I have a hard time believing the restriction is necessary.

  7. #17
    Senior Member usch's Avatar
    Join Date
    Oct 2009
    Location
    Germany
    Posts
    786
    I had an unpleasant experience the other day when the server decided to add every single non-album track in my library to the current playlist (is it really expected behavior that "Play Other Songs In Album" applies to "No Album", too?) and was quite happy when it stopped at 500.

  8. #18
    Member
    Join Date
    Apr 2010
    Location
    Berne, Switzerland
    Posts
    43

    Unhappy Similar problems - just can't believe it!

    I have this problem with my SB Radio with SBS 7.5.0 running on a Synology NAS.

    Setting the limit on SBS to more than approx. 750 (or 0 or empty) causes a non-playable playlist on the radio (can list the song, but play does not work).

    Quote Originally Posted by JJZolx View Post
    I don't think that saved playlists are limited to 500 items, just that no more than 500 items will be added to the current playlist at a time. I think the limit was put in place as a performance consideration for the people who inevitably try to add every track in their library to the playlist and then don't understand why the server appears to freeze for 10 minutes.
    Unfortunately, I don't think that the above is true.

    I tried with a limit of 10. Each time I select the playlist, it contains the same 10 songs. If at least the radio would select each time 10 songs randomly, it would not be so bad.

    This limitation is really TERRIBLE!!! The cheapest iPods work better.

    I'm so disappointed about the bugs, the limitations, the bad ergonomy and the inexistent documentation of SB Radio and SBS!!!

  9. #19
    Senior Member
    Join Date
    Apr 2005
    Location
    Colorado
    Posts
    10,101
    Quote Originally Posted by paf View Post
    Unfortunately, I don't think that the above is true.

    I tried with a limit of 10. Each time I select the playlist, it contains the same 10 songs. If at least the radio would select each time 10 songs randomly, it would not be so bad.
    Isn't that exactly what you would expect? A playlist is an ordered list, so if limiting it to X songs then you'd expect it to play the first X songs every time.

    What I'm saying is easy to test. Change the limit to 20 and then _without_ rescanning, do you get 20 songs or 10? If the limit was imposed when the playlist is scanned, then you'd get 10. I think you should see 20, which means that the entire playlist was probably scanned into the database, but it's being limited only when you attempt to play it.

  10. #20
    Member
    Join Date
    Apr 2010
    Location
    Berne, Switzerland
    Posts
    43

    Unhappy

    Quote Originally Posted by JJZolx View Post
    Isn't that exactly what you would expect? A playlist is an ordered list, so if limiting it to X songs then you'd expect it to play the first X songs every time.

    What I'm saying is easy to test. Change the limit to 20 and then _without_ rescanning, do you get 20 songs or 10? If the limit was imposed when the playlist is scanned, then you'd get 10. I think you should see 20, which means that the entire playlist was probably scanned into the database, but it's being limited only when you attempt to play it.
    ...so what's the purpose of scanning the entire playlist into the database if the playing device takes every time the SAME first 500 songs?

    The system could at least give the option that each time another 500 songs are chosen when extracting the playlist from the database!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •