Selur's Little Message Board

Full Version: With many filters the video encoding does not start
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ubuntu 16.04 x64, Hybrid 2018.06.18.1 from https://launchpad.net/~djcj/+archive/ubuntu/hybrid

When most filters are selected, the encoding does not begin and a message is displayed:
Code:
ERROR: /tmp/08_54_23_0810_03.264 is too small! (byteSize: 0byte)

Also, VPY preview does not work
Code:
# Imports
import os
import sys
import vapoursynth as vs
core = vs.get_core()
# Import scripts folder
scriptPath = '/usr/share/vsscripts'
sys.path.append(os.path.abspath(scriptPath))
# Import scripts
import havsfunc
# Loading /media/eugene/VIDEO_TS/VTS_01_5.VOB using D2VSource
clip = core.d2v.Source(input="/tmp/vob_f989e19e043b1389771e01f32bf0a62b_936145377.d2v", rff=False)
# making sure input color matrix is set as unspec
clip = core.resize.Point(clip, matrix_in_s="unspec")
# making sure frame rate is set to 30000/1001
clip = core.std.AssumeFPS(clip, fpsnum=30000, fpsden=1001)
# Making sure input color range is set to TV (limited) range.
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
# Input resolution is 720x480.
# rainbow removal using DeCross
clip = core.decross.DeCross(clip=clip)
# 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)
clip = clip[::2]
# adjusted resizing to achieve PAR 1:1 for preview (1)
clip = core.fmtc.resample(clip=clip, kernel="spline16", w=854, h=480, interlaced=False, interlacedd=False)
# adjusting output color from: YUV420P16 to YUV420P8 for x264Model (i420)
clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P8)
# Output
clip.set_output()

VapourSynth script processor: Failed to load vapoursynth script library!
[color=#ff0000]Please set up the library search paths in settings.[/color]

hybrid-tools, hybrid-avisynth-extension, hybrid-vapoursynth-extension are installed.
Seems like some problem with the configuration.
Hopefully djcj can help.

Cu Selur

Ps.: There's also I bug which is my fault: 'DeCross' gets always added to the Vapousynth script. :/ -> will probably release a new version today or tomorrow, but that won't fix 'Failed to load vapoursynth script library!'.
(23.06.2018, 08:25)Selur Wrote: [ -> ]Seems like some problem with the configuration.
Hopefully djcj can help.

Cu Selur

Ps.: There's also I bug which is my fault: 'DeCross' gets always added to the Vapousynth script. :/ -> will probably release a new version today or tomorrow, but that won't fix 'Failed to load vapoursynth script library!'.

Do I need to write something in this thread?
https://forum.selur.net/showthread.php?tid=18
No, wrote a PM to him, so he will probably look at it when he got the time.

Cu Selur