Hi
please can anyone help a cat?
now I would like add to the video part:Code:vid=FFVideoSource("j:\sfilataESP\sfilata.avi") aud=FFAudioSource("j:\sfilataESP\audiosfilata.wav") yadif(1,1) audiodub(vid, aud)
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) ?
+ Reply to Thread
Results 1 to 4 of 4
-
-
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) -
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.
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.
Similar Threads
-
AviSynth:can't get ffvideosource to work.
By sambat in forum EditingReplies: 5Last Post: 11th Nov 2015, 08:15 -
AVISynth script exact effects to apply in Premiere Pro. need help plsss
By asim in forum EditingReplies: 6Last Post: 2nd Nov 2014, 06:07 -
avisynth slow to load using FFVideoSource(....) than Virtualdub
By marcorocchini in forum Newbie / General discussionsReplies: 15Last Post: 23rd Sep 2014, 16:48 -
[Avisynth] FFVideoSource: Video track is unseekable
By marcorocchini in forum Newbie / General discussionsReplies: 2Last Post: 17th Oct 2013, 16:36 -
avisynth: directShowSource, ffVideoSource, avcSource -- speed
By adom in forum Video ConversionReplies: 8Last Post: 14th Jun 2011, 20:35