View Single Post
Old 26th December 2010, 20:06   #6  |  Link
Didée
Registered User
 
Join Date: Apr 2002
Location: Germany
Posts: 5,391
You are still outputting YUY2. The conversion to YV12 goes into "last", then you return the not-converted "final".

Fixed ...

Code:
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\VSFilter.dll")
raw=DirectShowSource("D:\raw.mp4", fps=23.976, audio=false, convertfps=true)
op=raw.trim(0,2176).TextSub("D:\inicio.ass")
cap=raw.trim(2177,34676)
final=op+cap
final=final.TextSub("D:\timmeo.ass")
final=ConvertToYV12(final)
return final
__________________
- We´re at the beginning of the end of mankind´s childhood -

My little flickr gallery. (Yes indeed, I do have hobbies other than digital video!)
Didée is offline   Reply With Quote