1

guvcview 命令会自动增加输出文件名。

这是我正在使用的命令:

 guvcview -d /dev/video1 --no_display -r 1 -f yuyv -s 2592x1944 -i capture.jpeg -c 2 --exit_on_close

输出文件名是:

捕获-0.jpeg

捕获-1.jpeg

捕获-2.jpeg

ETC...

我怎样才能使它不增加?我想要一个每次都被覆盖的静态文件名(capture.jpeg)。我可以通过单击“捕获”按钮从 GUI 执行此操作,但我需要能够从终端执行此操作。

4

2 回答 2

2

.guvcviewrc您的主目录中应该有一个名为的文件。里面有一条线image_inc=1。更改它以image_inc=0解决我的问题。

于 2013-09-17T19:37:40.347 回答
0

I am pretty sure there is no way to accomplish this without outside help from a bash script or something akin to that.

My solution is to edit the timers.c file in the guvcview source.

I removed line 109: "global->image_inc = global->image_picn;"

Removal of this line prevents guvcview from auto-incrementing the filename when set on a timer.

I then recompiled guvcview, and now it is working perfectly!

于 2013-01-17T01:17:17.343 回答