VideoHelp Forum
+ Reply to Thread
Results 1 to 3 of 3
Thread
  1. I've installed BorderControl external filter, but I do have an issue. Although AVSPMOD can recognise it, it pops up message "Access Code Violation" preview does show up. When I open it on VirtualDub, it doesn't recognise at all. What's the problem here? Image
    [Attachment 50520 - Click to enlarge]
    Image
    [Attachment 50521 - Click to enlarge]
    .

    Video = LWLibavVideoSource("C:\AviSynth Videos\Tekken 4\Raw\Tekken 4 Nina Williams Arcade Walkthrough.m2ts")
    Audio = LWLibavAudioSource("C:\AviSynth Videos\Tekken 4\Raw\Tekken 4 Nina Williams Arcade Walkthrough.m2ts")
    Video = AudioDub(Video, Audio)
    Video = ConvertToYV12(Video)
    Video = Crop(Video, 42, 28, -52, -36)
    Video = FineDehalo(Video, rx=2, ry=2)
    Video = EdgeFixer_ContinuityFixer(Video, left=2, top=0, right=1, bottom=0, radius=2)
    Video = BorderControl(Video, XLS = 8, XLSF= 8)
    Video = MergeChroma(Video, Blur(Video, 1.00))
    Video = yadifmod2(Video, order=1, field=-1, mode=1)
    Video = Rainbow_Smooth(Video, Radius=3)
    Video = TemporalSoften(Video, 3, 4, 8, scenechange=15, mode=2)
    Video = BicubicResize(Video, b=0, c=0.50, 1280, 720)
    Quote Quote  
  2. Why are you blaming BorderControl for that mess not opening in VDub?

    Does this open:

    Video = LWLibavVideoSource("C:\AviSynth Videos\Tekken 4\Raw\Tekken 4 Nina Williams Arcade Walkthrough.m2ts")
    Audio = LWLibavAudioSource("C:\AviSynth Videos\Tekken 4\Raw\Tekken 4 Nina Williams Arcade Walkthrough.m2ts")
    AudioDub(Video, Audio)


    If so add back the remaining lines one-by-one, but without all the unnecessary "Video". Eventually you might get something like this:

    Video = LWLibavVideoSource("C:\AviSynth Videos\Tekken 4\Raw\Tekken 4 Nina Williams Arcade Walkthrough.m2ts")
    Audio = LWLibavAudioSource("C:\AviSynth Videos\Tekken 4\Raw\Tekken 4 Nina Williams Arcade Walkthrough.m2ts")
    AudioDub(Video, Audio)
    ConvertToYV12()
    Crop(42, 28, -52, -36)
    FineDehalo(rx=2, ry=2)
    EdgeFixer_ContinuityFixer(left=2, top=0, right=1, bottom=0, radius=2)
    BorderControl(XLS = 8, XLSF= 8)
    MergeChroma(Blur(1.00))
    yadifmod2(order=1, field=-1, mode=1)
    Rainbow_Smooth(Radius=3)
    TemporalSoften(3, 4, 8, scenechange=15, mode=2)
    BicubicResize(b=0, c=0.50, 1280, 720)


    If that won't open then remove the audio and try again. And the MergeChroma line might need something different from what I did.
    Quote Quote  
  3. He needs

    return Video

    at the end of his script.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!