Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Usage

Reply
 
Thread Tools Search this Thread Display Modes
Old 13th September 2017, 21:41   #1  |  Link
me7
Registered User
 
Join Date: Mar 2007
Posts: 217
Partially blended telecine - use srestore all the way?

I have a telecined source (film to NTSC) that is partially blended. Srestore followed by tdecimate does a good job fixing the blended parts, but what about the plain telecined parts?
How can I combine it with tfm to handle the full clip properly?
me7 is offline   Reply With Quote
Old 13th September 2017, 23:40   #2  |  Link
johnmeyer
Registered User
 
Join Date: Feb 2002
Location: California
Posts: 2,695
I don't think anyone can give you an answer unless you post a short sample.
johnmeyer is offline   Reply With Quote
Old 14th September 2017, 09:38   #3  |  Link
manono
Moderator
 
Join Date: Oct 2001
Location: Hawaii
Posts: 7,406
If you don't mind going through and finding all the places where it's blended:

TFM.TDecimate
A=QTGMC.Srestore
ReplaceFramesSimple(Last,A,Mappings="[1000 2000] [10000 11000] [15000 16000]")###the frame ranges needing replacing


Quote:
Srestore followed by tdecimate does a good job fixing the blended parts
Surely you don't mean that? If you do then, yes, please post an untouched sample.

ReplaceFramesSimple is included in RemapFrames.
manono is offline   Reply With Quote
Old 14th September 2017, 19:58   #4  |  Link
hello_hello
Registered User
 
Join Date: Mar 2011
Posts: 4,829
Quote:
Originally Posted by manono View Post
Surely you don't mean that? If you do then, yes, please post an untouched sample.
That sounds like SRestore's double-blend-removal mode, for fixing telecined sources that were blend de-interlaced instead of IVTC'd.
It doesn't automatically decimate.
hello_hello is offline   Reply With Quote
Old 14th September 2017, 20:18   #5  |  Link
manono
Moderator
 
Join Date: Oct 2001
Location: Hawaii
Posts: 7,406
Yes, perhaps you're right. I hadn't thought of that. The sample will tell the tale.
manono is offline   Reply With Quote
Old 14th September 2017, 21:06   #6  |  Link
me7
Registered User
 
Join Date: Mar 2007
Posts: 217
Here they are:

This is a blended part: https://www.mediafire.com/file/0t0sl...57/blended.mkv
I get good but imperfect results with this script
Code:
LWLibavVideoSource("blended.mkv").srestore(frate=23.976, omode="pp3", speed=-25).tdecimate(mode=1)

This is a plain interlaced part: https://www.mediafire.com/file/nu6hf...interlaced.mkv
I get perfect results with this script
Code:
LWLibavVideoSource("interlaced.mkv").tfm(order=1).tdecimate()
me7 is offline   Reply With Quote
Old 15th September 2017, 00:41   #7  |  Link
manono
Moderator
 
Join Date: Oct 2001
Location: Hawaii
Posts: 7,406
Your blended.mkv is interlaced so you don't want to use omode which is for something else entirely. In addition, setting a framerate when using omode does nothing - the framerate doesn't change. It's kind of messed up, I agree, but my script earlier might provide a good place to start, but with a slight modification:

TFM.TDecimate
A=QTGMC.Srestore(Frate=23.976)
ReplaceFramesSimple(Last,A,Mappings="[1000 2000] [10000 11000] [15000 16000]")###the frame ranges needing replacing
manono is offline   Reply With Quote
Old 15th September 2017, 17:02   #8  |  Link
me7
Registered User
 
Join Date: Mar 2007
Posts: 217
Thanks, I'll give it a try.
me7 is offline   Reply With Quote
Old 17th September 2017, 20:00   #9  |  Link
me7
Registered User
 
Join Date: Mar 2007
Posts: 217
Bobbing + Srestore doesn't eliminate the blending entirely. Am I right to assume that this Bluray is impossible to fix completely?
me7 is offline   Reply With Quote
Old 17th September 2017, 20:35   #10  |  Link
manono
Moderator
 
Join Date: Oct 2001
Location: Hawaii
Posts: 7,406
It can't be entirely fixed as there are just too many blends. I'm pretty sure those blends are intentional and are a by-product of the dissolve effects created in that and (perhaps) other sections.

If they are intentional, you might just as well continue with the TFM/TDecimate you used on the rest of it as unblending doesn't improve it a whole lot.
manono is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 01:40.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.