This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

[HELP] due to: ERROR: ...... .265 is too small! (byteSize: 0byte)
#8
At a first glance the Vapoursynth script looks fine:
# Imports import os import sys import vapoursynth as vs core = vs.get_core() # Import scripts folder scriptPath = '/opt/hybrid/vsscripts' sys.path.append(os.path.abspath(scriptPath)) # Import scripts import havsfunc # Loading source using FFMS2 clip = core.ffms2.Source(source="/home/jirka/VIDEO/capture001_type2_shrink.avi",cachefile="/tmp/23_47_10_0210.ffindex",format=vs.YUV420P8,alpha=False) # making sure input color matrix is set as 470bg clip = core.resize.Point(clip, matrix_in_s="470bg",range_s="limited") # making sure frame rate is set to 25 clip = core.std.AssumeFPS(clip, fpsnum=25, fpsden=1) # Setting color range to TV (limited) range. clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1) # setting field order to what QTGMC should assume clip = core.std.SetFrameProp(clip=clip, prop="_FieldBased", intval=2) # Deinterlacing using QTGMC clip = havsfunc.QTGMC(Input=clip, Preset="Fast", TFF=True) # make sure content is preceived as frame based clip = core.std.SetFieldBased(clip, 0) clip = clip[::2] # Output clip.set_output()

Does the Vapoursynth Preview show any errors or work properly?

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Offline between (including) 29th of June and 5th of July => RockHarz Festival
Reply


Messages In This Thread
RE: due to: ERROR: ...... .265 is too small! (byteSize: 0byte) - by Selur - 01.04.2020, 04:57

Forum Jump:


Users browsing this thread: 1 Guest(s)