JadeMonkee wrote: 
> Hello. 
> I have loaded up a USB drive with just under 4000 images in a single
> folder, /mnt/sda1/photos and set them to run as a screen saver while my
> RPi (running PiCorePlayer w/ 7" touchscreen) is paused.
> These images document a recent three month trip I undertook, and I
> thought it would be a good way to reminisce. 
> Anyway, I've noticed that the only images coming up on-screen (it's set
> to random order) are those taken during the first quarter of the
> journey.
> In other words, to seems to only be showing the first (at a guess)
> thousand or so images.
> Is there a limit to how many images can be displayed by the screen
> saver, or can be chosen by the random algorithm? 
> Many thanks.

There is a 1000 image limit in ImageSourceLocalStorage.lua:


Code:
--------------------
    
  -- 1000 images should be enough...
  if #self.imgFiles > 1000 then
  break
  end
  
  ...
  
  if #self.imgFiles > 1000 then
  log:warn("we're not going to show more than 1000 pictures - stop here")
  break
  end
  
--------------------


This file is located in the ImageViewer folder in lua\applets.

Regards,

Arie


------------------------------------------------------------------------
kolossos4730's Profile: http://forums.slimdevices.com/member.php?userid=63988
View this thread: http://forums.slimdevices.com/showthread.php?t=98156

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

Reply via email to