帧缓冲图像查看器加载后续图像

时间:2014-07-30 20:05:50

标签: python image slideshow fullscreen

我在以下方式使用fbi时遇到了一些麻烦:

import os
import time

while True:
    os.system('sudo fbi -m "1920x1080-60" --autoup -t 10 -noverbose -d /dev/fb0 -T 2 /home/pi/Ads/8.jpg')
    time.sleep(5)
    os.system('sudo fbi -m "1920x1080-60" --autoup -u -t 10 -noverbose -readahead -d /dev/fb0 -T 2 /home/pi/Ads/squirrel_0.jpg')
    time.sleep(5)

我想要做的是使用脚本显示图像,或者在启动时启动幻灯片显示,并能够确定在特定时间显示哪个图像。这将允许我的主脚本知道正在显示哪个图像并将其应用于我用相机产生的数据。

上述脚本的麻烦之处在于,两张图片切换的时间越长,同时会闪烁。

我想知道fbi是否有用于确定正在显示哪个图像的日志文件。任何帮助将不胜感激。

0 个答案:

没有答案