Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. |
![]() |
#21 | Link | |
Moderator
![]() Join Date: Oct 2001
Location: Hawaii
Posts: 7,192
|
Quote:
I'm not sure to what you're referring when you say "There appears to be interlacing still". If the uneven line along his collar, that's not interlacing and might be fixed by a line darkener. If you mean the "colors outside the lines" there are chroma settings to try. You're getting the chroma from the previous or next frames in the current frames. I expect you'd get the same results even if you had StaxRip do the job. |
|
![]() |
![]() |
![]() |
#22 | Link | |
Registered User
Join Date: Oct 2018
Posts: 25
|
Quote:
|
|
![]() |
![]() |
![]() |
#23 | Link |
Registered User
Join Date: Mar 2011
Posts: 3,789
|
QTGMC doesn't always work well with animation, probably because it has lots of repeated frames. When I replaced TDeint with QTGMC, I found an artefact pretty quickly. See the ghosting under Peter's chin in the pic below.
Plus TDeint() seems to do field matching, which is mostly what's needed here. It doesn't de-interlace unless it has to. The TDeint(mode=1) output is much like TFM(), only it repeats frames for double the frame rate. It doesn't produce jagged lines and edges as Yadif(mode=1) would. FixBlendX() works in a fixed pattern, so if there's not a fixed pattern of blending (or whatever it is) it mightn't work for the whole video and you'll have to split it into sections. You could try SRestore() instead, but I thought it was dropping frames it shouldn't in this case (Edit, that's incorrect. See the next post). Or there's AnimeIVTC(). I haven't used it much myself. ![]() Last edited by hello_hello; 24th October 2018 at 20:49. |
![]() |
![]() |
![]() |
#24 | Link |
Registered User
Join Date: Mar 2011
Posts: 3,789
|
I'll take back what I said about SRestore(). I did a side by side comparison with FixBlendX(1) and they were outputting the same frames. I obviously didn't combine SRestore with the right field matching or de-interlacing earlier. This should work just as well.
mpeg2source("D:\VTS_01_1.demuxed.d2v") TDeint(mode=1) SRestore(24.0/1.001) //avisynth.nl/index.php/Srestore Last edited by hello_hello; 24th October 2018 at 21:19. |
![]() |
![]() |
![]() |
#25 | Link | |
Registered User
Join Date: Oct 2018
Posts: 25
|
Quote:
|
|
![]() |
![]() |
![]() |
#26 | Link |
Moderator
![]() Join Date: Oct 2001
Location: Hawaii
Posts: 7,192
|
Well, I tried to fix it using an IVTC and got nowhere. However, I was able to fix it using:
MPEG2Source("Test.d2v") QTGMC() Srestore(frate=23.976) See if that works for you. You might be able to use a faster preset to make the encoding faster. I just used the default setting for QTGMC. QTGMC also has the added advantage of maybe fixing (or improving) the "vibrating" of which you wrote. Last edited by manono; 25th October 2018 at 00:49. |
![]() |
![]() |
![]() |
#27 | Link | |
Registered User
Join Date: Oct 2018
Posts: 25
|
Quote:
Code:
Import("J:\StaxRip-x64-1.7.0.0-stable\Apps\DeinterlaceTool.avsi") Import("J:\StaxRip-x64-1.7.0.0-stable\Apps\Srestore.avsi") QTGMC(Preset="Slower", FPSDivisor=2) Srestore(frate=23.976) Last edited by Vitality; 25th October 2018 at 03:30. |
|
![]() |
![]() |
![]() |
#28 | Link |
Moderator
![]() Join Date: Oct 2001
Location: Hawaii
Posts: 7,192
|
You might not want to use FPSDivisor=2 because that limits the choice of frames from which SRestore can choose. However, if you can remove that chroma nastiness doing it that way, then more power to you. But I still wouldn't do it.
I use all 32 bit and don't have that problem. The last StaxRip 32-bit version can be found here: https://www.videohelp.com/software/StaxRip Scroll down a ways. Or use an older version of Srestore that doesn't require that GScript stuff (before v2.7f). |
![]() |
![]() |
![]() |
#29 | Link | |
Registered User
Join Date: Oct 2018
Posts: 25
|
Quote:
|
|
![]() |
![]() |
![]() |
#30 | Link |
Moderator
![]() Join Date: Oct 2001
Location: Hawaii
Posts: 7,192
|
Install a 32-bit version of AviSynth and do the "IVTC" outside of StaxRip. Or let those few frames of chroma nastiness remain after being IVTC'd within StaxRip. It's not as if you or anyone else will notice it when played at full speed. Or ask the developer to make it possible for you to use SRestore within his program. He can be found in the MPEG-4 Encoder GUIs Forum here on Doom9
|
![]() |
![]() |
![]() |
#31 | Link | |
Registered User
Join Date: Oct 2018
Posts: 25
|
Quote:
|
|
![]() |
![]() |
![]() |
|
|