TomArrow
2nd January 2020, 15:06
I wanna weave multiple different encodes to export as an image sequence for AI upscale training.
Specifically I wanna use the n-th frame from the nth source, so:
- 1st frame from 1st source
- 2nd frame from 2nd source
- ...
- 6th frame from 6th source
- 7th frame from 1st source
- 8th frame from 2nd source
- ...
How can I do this? I know that I could use something like SelectEvery for the opposite direction, but how can I do this?
I figure I could just divide the framerate by 6 (or number of sources) for each clip to discard 5 out of 6 frames, while using trim to take care of the offset, but that still leaves me with the issue of having to weave them.
Specifically I wanna use the n-th frame from the nth source, so:
- 1st frame from 1st source
- 2nd frame from 2nd source
- ...
- 6th frame from 6th source
- 7th frame from 1st source
- 8th frame from 2nd source
- ...
How can I do this? I know that I could use something like SelectEvery for the opposite direction, but how can I do this?
I figure I could just divide the framerate by 6 (or number of sources) for each clip to discard 5 out of 6 frames, while using trim to take care of the offset, but that still leaves me with the issue of having to weave them.