We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hallo,
i have question - is posible in DVR SCAN make command to analyze multiple videos and then every analyzed video will have outputs in separated video?
In folder have i videos: from 001 to 040.avi ... and standard is one output 001-040output.avi, I want to make command wich give me 40 outpus videos...
Thank you and sorry for misstakes, my Ennglish is verry bad.
The text was updated successfully, but these errors were encountered:
I'll be looking into this in the future to support glob inputs, but for now take a look at Issue #5.
There are some workarounds posted there which can help by using a shell/cmd script, e.g. for Windows:
for /F %i in ('dir *.avi /b') do dvr-scan -i %i
And for Linux/Mac:
for f in "*" do dvr-scan -i $f done
Closing as duplicate of #5; feel free to continue the discussion there if you have any further questions :)
Sorry, something went wrong.
No branches or pull requests
Hallo,
i have question - is posible in DVR SCAN make command to analyze multiple videos and then every analyzed video will have outputs in separated video?
In folder have i videos: from 001 to 040.avi ... and standard is one output 001-040output.avi, I want to make command wich give me 40 outpus videos...
Thank you and sorry for misstakes, my Ennglish is verry bad.
The text was updated successfully, but these errors were encountered: