1

I have script with command

fbi -t 10 -T 2 $(find /images -iname "*.jpg" ) 

Its start fbi with good looking process with proper filenames because i compared with command:

fbi -t 10 -T 2 *.jpg

But this process from script die after couple of seconds (random time) and from the begining dont display image.

Any ideas?

2 Answers2

0

I tried this on a RPi0W with composite video output.

The following will run a continuous slideshow with no problems.

sudo fbi -a -noverbose -T 2 -t 3 $(find  -iname "*.jpg")
Greenonline
  • 2,969
  • 5
  • 27
  • 38
0

This guy uses a similar command.

fbi -noverbose -m 640x480 -a -u -t 6 /home/pi/art/**/*

I was trying to understand what it was to see if it could be used without the flickr API when i came across your question. Maybe you can make more sense of it than I could.

Here's the link: Building a living photo frame with a Raspberry Pi and a motion detector

Greenonline
  • 2,969
  • 5
  • 27
  • 38
Isaiah
  • 16