cbird icon indicating copy to clipboard operation
cbird copied to clipboard

Indexing process stops with "nn.vdx failed to open"

Open PeterCodar opened this issue 1 year ago • 1 comments

On my long way to index my 27k+ video files, I repeatedly get this error: [F][VideoIndex::save{//192.168.1.2/Test/_Diverse/_index/video/49.vdx}] failed to open

Every time I restart the process, I get a slighlty bigger number for *.vdx.

What kind of CMD line option do I have to set to ignore such errors or let cbird try it again?

I'm not sure if this helps, but the above error is accompanied with this error: [C][VideoContext::open{abcd-131.mp4}] cannot open input -18 "Too many open files"

PeterCodar avatar Apr 25 '24 13:04 PeterCodar

The vdx number should go up as it is the unique id of things. The too many open files means a file isn't being closed somewhere - that's a bug. Thank you for reporting.

You can make a simple bat file that runs cbird in an infinite loop. Make sure to pause it for a little bit between loops (a minute maybe?) so it doesn't thrash too bad if there is a problem. In .bat it is something like

@echo off
:loop
cbird [...]
timeout 60
goto  :loop

scrubbbbs avatar May 16 '24 13:05 scrubbbbs

The vdx number should go up as it is the unique id of things. The too many open files means a file isn't being closed somewhere - that's a bug. Thank you for reporting.

You can make a simple bat file that runs cbird in an infinite loop. Make sure to pause it for a little bit between loops (a minute maybe?) so it doesn't thrash too bad if there is a problem. In .bat it is something like

@echo off
:loop
cbird [...]
timeout 60
goto  :loop

that loop doesn't work it must be implemented in soft directly "limit open files" in command line or hardcoded in cbird source.

tehMArs avatar May 22 '24 15:05 tehMArs