HolyWu / vs-dpir

DPIR function for VapourSynth
MIT License
32 stars 3 forks source link

"Only RGBS supported" #2

Closed Troceleng closed 3 years ago

Troceleng commented 3 years ago

I tried to input video and the script gave me an error saying "Only RGBS supported". What even is RGBS video?

I tested converting to RGB64, RGB32 and RGB24 using Virtualdub, but all of them resulted in the same "Only RGBS supported" message. What am I supposed to do?

Ichunjo commented 3 years ago

RGBS is 32bit float. On Vapoursynth you can easily convert a clip using the built-in resizers like that:

rgb = core.resize.Bicubic(clip, format=vs.RGBS)