-
Notifications
You must be signed in to change notification settings - Fork 13
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
Hopefully a parameter "end_number" will be added for the end number of the image sequence. #77
Comments
Why do you need an end number? The end is automatically detected based on the image files |
I want to use it for a slideshow script. But it can only read two pictures. |
Here is my script: from vapoursynth import core video = core.bs.VideoSource(source=r'E:\002\001\%02d.jpg') audio = core.bas.Source(r'E:\Audio\xxx.mp3', track=-1) audio.set_output(1) |
It's still automatically detected. This issue makes no sense. |
Why it only read part of the pictures, it only read 25 pictures (00.jpg-43.jpg), Some of the pictures in the middle were not read. from vapoursynth import core video = core.bs.VideoSource(source=r'E:\002\001\%02d.jpg', start_number=0) video.set_output() |
Couldn't reproduce |
Just like avisynth's ImageReader, it can read any number of images.
The text was updated successfully, but these errors were encountered: