Can it be done to get back the original 1080i picture without any negative effects?
+ Reply to Thread
Results 1 to 4 of 4
-
-
Without adding any additional negative effects, yes. If the video has been badly deinterlaced to obtain 720p, you cannot undo this.
From 720p to 1080i in AviSynth is almost a no-brainer.
Code:Spline36Resize(1920,1080) AssumeTFF() SeparateFields().SelectEvery(4,0,3).Weave()
-
The result won't be exactly the same as your original 1080i source. It will be less sharp (especially the chroma) and will contain any deinterlacing artifacts you introduced when you downscaled.
-