Skip to content
New issue

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

Analyzing multiple videos with multiple output videos #57

Closed
myscho15 opened this issue Aug 11, 2021 · 1 comment
Closed

Analyzing multiple videos with multiple output videos #57

myscho15 opened this issue Aug 11, 2021 · 1 comment

Comments

@myscho15
Copy link

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.

@Breakthrough
Copy link
Owner

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 :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants