Indexing process stops with "nn.vdx failed to open"
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"
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
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.