This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

SelectEvery für Color Filter
#7
(12.03.2021, 06:49)Selur Wrote: Schau ich mir später genauer an, aber die ganzen AssumeFPS sollten bis auf den letzten 'clip = core.std.AssumeFPS(clip=clip,fpsnum=50, fpsden=1)# new fps: 50' unnötig sein.

Auch ist mir der Sinn von 'End 1' unklar,..
da die ausgewählten Even/Odd Frames direkt wieder verworfen werden,..

Cu Selur

Richtig ja , das sind eher überbleibsel von meinen Tests. std.Interleav muss die selbe fps, auflösung bit tiefe etc haben. Die kürzeste Version sähe so aus: 

clipOdd = core.std.SelectEvery(clip=clip, cycle=2, offsets=[1])
clipEven = core.std.SelectEvery(clip=clip, cycle=2, offsets=[0])
# Do stuff with Even frames
# Do stuff with Odd frames
clip = core.std.Interleave(clips = [clipEven, clipOdd])
# Do stuff with all frames
clip = core.std.SelectEvery(clip=clip, cycle=2, offsets=[0])


Das zweite ende ist ein alternatives ende für progressives material also:
clipHigh = core.std.SelectEvery(clip=clip, cycle=2, offsets=[1])
clipLow = core.std.SelectEvery(clip=clip, cycle=2, offsets=[0])
# Do stuff with High frames
# Do stuff with Low frames
clip = core.std.Interleave(clips = [clipHigh, clipLow])
# Do stuff with all frames
clip = core.std.Merge(clipHigh, clipLow, 0.5)

Ich teste noch aber die meisten temporalen filter arbeiten wunderbar mit dieser methode zusammen. z.b FluxSmooth und alles was DCT benutzt funtioniert wirklich gut. Ich bekomme heute noch besuch und weiß daher nicht wie weit ich heute damit komme, aber ich werde versuchen beispiel scripte und presets schonmal zusammen zu stellen.
Reply


Messages In This Thread
SelectEvery für Color Filter - by BinaryPic - 11.03.2021, 19:16
RE: SelectEvery für Color Filter - by Selur - 11.03.2021, 19:27
RE: SelectEvery für Color Filter - by Selur - 11.03.2021, 19:45
RE: SelectEvery für Color Filter - by Selur - 12.03.2021, 06:49
RE: SelectEvery für Color Filter - by BinaryPic - 12.03.2021, 21:05
RE: SelectEvery für Color Filter - by Selur - 12.03.2021, 21:20
RE: SelectEvery für Color Filter - by Selur - 12.03.2021, 22:19
RE: SelectEvery für Color Filter - by Selur - 13.03.2021, 01:45
RE: SelectEvery für Color Filter - by Selur - 13.03.2021, 14:27
RE: SelectEvery für Color Filter - by Selur - 14.03.2021, 09:14
RE: SelectEvery für Color Filter - by Selur - 14.03.2021, 11:30
RE: SelectEvery für Color Filter - by Selur - 15.03.2021, 06:53
RE: SelectEvery für Color Filter - by Selur - 15.03.2021, 07:45
RE: SelectEvery für Color Filter - by Selur - 15.03.2021, 22:02
RE: SelectEvery für Color Filter - by Selur - 15.03.2021, 22:15

Forum Jump:


Users browsing this thread: 1 Guest(s)