VideoHelp Forum




+ Reply to Thread
Results 1 to 4 of 4
  1. Hi

    please can anyone help a cat?

    Code:
    vid=FFVideoSource("j:\sfilataESP\sfilata.avi")
    aud=FFAudioSource("j:\sfilataESP\audiosfilata.wav")
    yadif(1,1)
    audiodub(vid, aud)
    now I would like add to the video part:

    AssumeFPS(25)
    ConvertToYUY2(interlaced=true)
    ColorMatrix(mode="Rec.601->Rec.709")


    but I have to tell avisynth that this lines have to be added to the video part, because there are present vid=FFvideosource... and not the standard FFvideoSource...

    How can I do? thanks

    and then:

    my source is uncompressed .avi interlaced
    I need that output of avisynth after the Yadif(1,1) is progressive: for that is it correct that I use ConvertToYUY2(interlaced=true) ?
    Quote Quote  
  2. aud=FFAudioSource("j:\sfilataESP\audiosfilata.wav" )

    FFVideoSource("j:\sfilataESP\sfilata.avi")
    yadif(1,1)
    AssumeFPS(25)
    ConvertToYUY2(interlaced=false)
    ColorMatrix(mode="Rec.601->Rec.709", clamp=0)
    vid=last

    audiodub(vid, aud)
    Quote Quote  
  3. Member Skiller's Avatar
    Join Date
    Oct 2013
    Location
    Germany
    Search PM
    Code:
    vid=AssumeFPS(vid, 25)
    vid=ConvertToYUY2(vid, interlaced=true)
    vid=ColorMatrix(vid, mode="Rec.601->Rec.709")

    poisondeathray's suggestion is easier because it simply uses (the invisible) "last" instead of "vid" which would have to be explicit for every line as seen here.



    Originally Posted by marcorocchini View Post
    I need that output of avisynth after the Yadif(1,1) is progressive: for that is it correct that I use ConvertToYUY2(interlaced=true) ?
    It's not incorrect in the sense that it would produce garbage but you will squeeze out slightly more vertical chroma detail if you put ConvertToYUY2() somewhere after Yadif, without interlaced=true (false is the default).
    Last edited by Skiller; 25th Mar 2015 at 09:39.
    Quote Quote  
  4. thanks ^^
    Quote Quote  



Similar Threads

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