n00mkrad / flowframes

Flowframes Windows GUI for video interpolation using DAIN (NCNN) or RIFE (CUDA/NCNN)
GNU General Public License v3.0
1.46k stars 114 forks source link

Fix minor problem and improve .gitignore #250

Closed yerdzxc closed 1 week ago

yerdzxc commented 1 year ago

FfmpegEncode.cs(98, 44): from 'filters = filters.Where(f => f.IsNotEmpty()).ToList();' to 'filters = filters.Where(f => !string.IsNullOrEmpty(f)).ToList();'

Added rider specific .gitignore

n00mkrad commented 1 week ago

IsNotEmpty exists in ExtensionMethods. Not sure why you'd get an error.