logo Sign In

Post #926582

Author
fandangos
Parent topic
The GOUT Sync Thread
Link to post in topic
https://originaltrilogy.com/post/id/926582/action/topic#926582
Date created
9-Apr-2016, 10:57 PM

After having success with ANH from Negative One team and syncing it now I’m trying to sync ESB.
The problem is ConvertToYV12 which isn’t working properly.

While checking the video preview in MeGui the video is basically black and white.

I’m with Avisynth 2.6 which should support this.

Any ideas?

EDIT>
After a few hours reading and testing this solved my problem:

Loadplugin(“C:\Program Files (x86)\Haali\MatroskaSplitter\avss.dll”)
Loadplugin(“C:\Program Files (x86)\AviSynth\plugins\ffms2.dll”)
ESB=ffvideosource(“02-ESB_Grindhouse_1080p_BD25.mkv”)
.ConvertToYV12()#.ShowFrameNumber(scroll=true)

ESB2=
Trim(ESB, 0,3096).Loop(12,0,0) ++
ESB.Loop(6,30727,30727).Trim(3096, 35385) ++
ESB.Loop(3,35381,35381).Trim(35381, 59546) ++
ESB.Loop(7,59544,59544).Trim(59544, 59758) ++
ESB.Loop(5,59753,59753).Trim(59753, 75034) ++
Trim(ESB,75030,75978) ++
Trim(ESB,75978,90851) ++
ESB.Loop(7,90852,90852)
.Trim(90852,104633)
.DuplicateFrame(13781) ++
Trim(ESB,104627,121679) ++
ESB.Loop(24,121679,121679).Trim(121679, 150156) ++
ESB.Loop(11,150134,150134).Trim(150134, 0)

return ESB2