tarun005 / FLAVR

Code for FLAVR: A fast and efficient frame interpolation technique.
Apache License 2.0
455 stars 69 forks source link

Do not load entire raw video into RAM #11

Closed n00mkrad closed 3 years ago

n00mkrad commented 3 years ago

Unlike other video interpolation implementations like RIFE (https://github.com/hzwer/Arxiv2020-RIFE), this code loads all frames from disk into RAM.

This makes it impossible to interpolate videos longer than a minute or two, unless you have insane amounts of RAM.

It would be great if it's possible to instead load frames on-the-fly using a buffer, like RIFE does, for example.