Log in

View Full Version : Is there an alternative to textsub?


rs008f
4th January 2014, 01:03
textsub is causing a frame error during encoding. Is there an alternative? I want to hardcode .ass file.

poisondeathray
4th January 2014, 01:09
you can try assrender
http://forum.doom9.org/showthread.php?t=148926

or try a different version or .dll for vsfilter

rs008f
4th January 2014, 02:00
Updated to VSFilter 2.37 but still gave same frame error. Tried assrender but it stalled during encoding and would not complete.

poisondeathray
4th January 2014, 02:05
So maybe it's not a problem with vsfilter or assrender ?

Provide more details on the source, encoder, settings, scripts if used, and what you mean exactly by "stalled"

rs008f
4th January 2014, 02:19
I moved Textsub line to below Spline16Resize and it no longer gives frame error. Before it was above ConvertToYV12 line.

Before

Video = Video.TextSub()
Video = Video.ConvertToYV12()
Video = Video.Spline16Resize(720,480)



After

Video = Video.ConvertToYV12()
Video = Video.Spline16Resize(720,480)
Video = Video.TextSub()

cretindesalpes
5th January 2014, 14:44
You could also try xy-VSFilter. It worked well on ass scripts which made crash the classic VSFilter.

rs008f
5th January 2014, 16:31
Thanks, it works with my original. This is a better solution.