我一直在使用import
Imagemagick从每15秒拍摄第二个监视器的屏幕截图,然后使用mencoder
- 组装图像,从而创建了一段时间内我的桌面上发生的延时。当我使用Gnome 2时,这种方法效果很好-但是最近,我的镜头中出现了一些伪像。黑色矩形出现在各个地方。
gnome屏幕截图不会发生这种情况,但是我需要足够强大的功能来做到这一点:
# Capture 1920 x 1080 to file, starting at position 1680 x 0 (Monitor to the
# left is 1680x1050, monitor to the right is 1920 x 1080 - I want to capture the
# monitor to the right.)
while [ 1 ]; do
import -window root -crop 1920x1080+1680+0 ~/img/foo-$(date +%y%m%d-%H%M%S).jpg
sleep 15
done
并且gnome-screenshot
似乎没有可用的选项来执行此操作。我还没有找到使假象import
消失的方法。
有人对我有什么聪明的建议吗?