-
Notifications
You must be signed in to change notification settings - Fork 5
Description
Currently, DAIN-Vulkan-CLI insists on taking a video file as input, so I end up doing
ffmpeg -framerate 25 -i "frames-720p-25fps/%08d.png" -vcodec v210 color-graded-720p-25fps-10bit.avi
and DAIN-Vulkan-CLI will unpack it back into images (using 8 bit PNGs instead of 16 bit PNGs...). It would be nice if I could provide a directory as input, similar to dain-ncnn-vulkan.
Same on the output side. It produces neatly interpolated images in a directory (8 bit PNGs though, would prefer 16 bit PNGs) that could then be fed to a super resolution AI. Instead, it insists not only on encoding a low-quality MP4, but also wipes the interpolated images out.
For reference, my command line was this, specifying an --output-folder
, not an --output-file
:
/opt/dain-vulkan-cli-0.0.5/DAINVulkanCLI \
--input-file color-graded-720p-25fps-10bit.avi \
--output-folder frames-rife-720p-100fps \
--frame-multiplier 4 \
--interpolator-engine rife-ncnn \
--tile-size 736 \
--input-fps 25
Thanks, by the way, for writing DAIN-Vulkan-GUI! It's very nice to have 3 AI interpolators in an easy, portable package and it's very fast, too.