deleted user
Unregistered
Thanks:
Given thank(s) in post(s)
Posts: 2,809
Threads: 50
Joined: 2015 Jan
Thanks: 1876
Given 1010 thank(s) in 648 post(s)
Wow looks cool. I noticed the 4K & 2K remasters of T2 have different framings, so it could help to overlay any extra info on the borders to get the most image, preserving 4K as the main.
Posts: 7,151
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1497 thank(s) in 969 post(s)
Country:
Is there a way to let the image "touches" the borders? I mean, using three sources, to touch top/bottom with 1.33:1 image, or left/right with 2.35:1 BD when 1.33:1 is "included" into the 1.78:1
If not, it could be made a script that says something like "the three spots near top and bottom borders are black, hence the image should be resized to touch the left/right borders" - got the point?
Posts: 195
Threads: 2
Joined: 2017 Dec
Thanks: 12
Given 250 thank(s) in 89 post(s)
Country:
2018-01-15, 04:57 PM
(This post was last modified: 2018-01-15, 05:02 PM by random.next.)
Posts: 7,151
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1497 thank(s) in 969 post(s)
Country:
Posts: 1,997
Threads: 148
Joined: 2015 Apr
Thanks: 480
Given 5279 thank(s) in 1585 post(s)
Country:
Hello, I'm hoping somebody can help me figure out how to use this plugin. I'm quite competent with AVISynth scripting (and scripting in general since I am a programmer), but this plugin has a lot of moving parts and I'm attempting to use it to do something slightly different...
Here's the situation. I have a scan of a 35mm print and in the middle of a scene there are about 20 missing frames. I did my best to align the bluray of the film and spliced in the frames from the bluray, but there is an obvious change in quality between the two sources. So then I thought I'd use frames from a different scan of a different 35mm print hoping that the transition would be less noticeable. With me so far? Ok, now I was about to start manually aligning the frames, when I stumbled upon this thread. I downloaded the plugin and I used the sample script to load my sources and open the Overlay Editor, but now I'm not really sure how to proceed.
What I want to do is take my new source, align every frame and then render that out. My hope is then that I can overlay that on top of the original, and just have it fade in gently and fade out gently to cover the gap.
To help you out here are the files in question (I'm loading prores versions of these using QTInput() but that's a much bigger download!):
https://we.tl/KQ8bxebsSZ
Alt-Tech.mkv is another Technicolor Scan and this is the footage I want to overlay on top of:
Current.mkv which is what we currently have in beta 4 - mostly the main Technicolor scan, but with 20 frames or so near the end, (around "Situation Normal") that have been swapped out with blu-ray footage.
BD.mkv is the Bluray, color matched to Beta4, and upscaled to UHD, but I haven't added any grain or anything to try to match it more closely.
LPP.mkv is, as the name suggests, the Spanish LPP. This has been color matched to Beta4, sharpened, and upscaled to UHD, but I didn't do any digital cleanup of dirt and dust yet.
Here is my script so far:
Code: OM=QTInput("Alt-Tech.mov").ConvertToYV12() # YV12 clip
WS=QTInput("current.mov").ConvertToYV12() # YV12 clip
config=OverlayConfig(subpixel=2, minOverlayArea=95) #+ OverlayConfig(angle1=-0.5, angle2=0.5) # rotate only if needed
OverlayEngine(OM.ConvertToY8(), WS.ConvertToY8(), configs=config, backwardFrames=0, statfile="G:\temp\R4-Boring-Conversation\stats.txt") # ConvertToY8() for better perfomance
return last # uncomment for analysis pass
OverlayRender(OM.ConvertToYV24(), WS.ConvertToYV24(), debug=true, noise=50, upsize="Spline64Resize")
ConvertToYV12() # from YV24
# Prefetch(4) uncomment after analysis pass
Can anyone help me with what to do next?
Posts: 7,151
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1497 thank(s) in 969 post(s)
Country:
But... can't you simply use the other print for the whole shot with the missing frames?
Posts: 1,997
Threads: 148
Joined: 2015 Apr
Thanks: 480
Given 5279 thank(s) in 1585 post(s)
Country:
Posts: 7,151
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1497 thank(s) in 969 post(s)
Country:
I can give you my impressions of using this great script, but of course the author would surely help you more.
Think this: during my last AAP-AR test, I've noted that cutting one source by few pixels top and bottom (even only one or two) would lead to perfect alignment, while before it one or few frames were misaligned. Or, leaving the lower resolution "as is" would result in misalignment (sometimes) while upscaling it at the "right" dimension (read: find manually the upscale settings where one frame of the low res image is spatially aligned with the hi res) would solve this. Beware, I'm talking about digital sources, that luckily align really well - The Matrix BD/WEB/SDTV, while DVD/HDTV have different angles.
I think it would be almost impossible to align perfectly 35mm scans, due to different angles and geometry primarily; of course different colors and/or contrast don't help either. I'm aware the script could deal with angle rotations, but I'm pretty sure it can't deal with different geometry - where, for example, the center part of the image is wider/narrower than the borders, and it happens sometimes.
Posts: 1,202
Threads: 28
Joined: 2015 Jan
Thanks: 823
Given 371 thank(s) in 240 post(s)
2018-01-30, 03:09 AM
(This post was last modified: 2018-01-30, 03:10 AM by CSchmidlapp.)
|