Log in

View Full Version : Going from Windows To Linux, how would I...


Pages : 1 [2]

smok3
20th July 2011, 23:56
not so much about filtering, but there is slight chance that my avisynth would use "trim".

RazrFalcon
21st July 2011, 08:37
Yep, 3:2 hard-telecined. Needs to be inverse-telecined back to 24000/1001p
Can you, please, give me the command which I need to add to avisynth script.
I found only Restore24.
Thanks.

Carpo
21st July 2011, 09:33
tfm(order=1).tdecimate(mode=1,hybrid=3) - might help, might need to be changed to suit your material

nm
21st July 2011, 11:11
Yep. TIVTC (which contains tfm and tdecimate) is the standard AviSynth tool for pullup/inverse telecine. Documentation:

http://avisynth.org/mediawiki/TIVTC
http://avisynth.org.ru/docs/english/externalfilters/tivtc.htm

RazrFalcon
21st July 2011, 11:32
Somethig like that:
LoadPlugin("DGDecode.dll")
DGDecode_mpeg2source("/media/data/Invader Zim/VideoFile.d2v", info=3)
LoadPlugin("ColorMatrix.dll")
ColorMatrix(hints=true, interlaced=true, threads=0)
tfm(d2v="/media/data/Invader Zim/VideoFile.d2v")
tdecimate(mode=1)
QTGMC(Preset="Very Slow")
SelectEven()
crop( 4, 0, -4, 0)
Spline64Resize(640,480) # Spline64 (Sharp)
Or I must to remove QTGMC?

Carpo
21st July 2011, 11:38
i would remove it

nm
21st July 2011, 11:58
Or I must to remove QTGMC?

Yes. After tfm the video is progressive, so it doesn't need to be deinterlaced.

RazrFalcon
21st July 2011, 14:58
Now it's normal?
http://storage1.static.itmages.ru/i/11/0721/s_1311256688_acfed2a4c9.png (http://itmages.ru/image/view/235693/acfed2a4) http://storage2.static.itmages.ru/i/11/0721/s_1311256689_ad5eeb4d2d.png (http://itmages.ru/image/view/235694/ad5eeb4d)

Carpo
21st July 2011, 15:42
if you see no lines during a fast action part of the video i would say yes :)

RazrFalcon
21st July 2011, 17:38
I don't see. :)

Also my FPS now 23.976, it's normal, yes?

Carpo
21st July 2011, 18:27
Yes that's how it should be

RazrFalcon
21st July 2011, 20:04
Ok.
Great thanks you all for helping.