I made an interlaced project in Premiere, but I'm not sure the fields are in the right order. When I grab frames of the video and look at them in Photoshop, the two fields seem to be in the wrong order.
But I'd like to check for sure that the interlacing has worked properly? My media player of choice is Daum PotPlayer, which can only advance 1 frame at a time, rather than 1 field at a time. So all I can see is two fields at once, and have no way to verify that they will appear in the correct order.
Is there any software I can use to inspect a movie field-by-field rather than frame-by-frame? So I know that the fields are in the right order?
+ Reply to Thread
Results 1 to 3 of 3
-
-
Avisynth.
Have you used MeGUI at all? You can use the File/Open menu to open a video, MeGUI will offer to index it. Run the indexing job and the script creator will open with a preview. Switch to the Script tab. Type the following below what's already there and refresh the preview. You can freely navigate backwards and forwards.
SeparateFields()
That'll probably halve the video height. If you want to go back to full height, try this (substitute the original video width for "A" and the original video height for "B". The info line was added to provide basic information.
SeparateFields()
Spline36Resize(A, B)
Info()
Avisynth assumes bottom field first if the field order can't be determined, but to tell it bottom field first:
AssumeBFF()
SeparateFields()
Or tell it top field first if need be.
AssumeTFF()
SeparateFields()
Last edited by hello_hello; 3rd Jan 2016 at 11:04.
Similar Threads
-
Apply filters on interlaced fields
By Lumbermatt in forum RestorationReplies: 2Last Post: 2nd Feb 2014, 07:01 -
How to split video into separate fields?
By brassplyer in forum EditingReplies: 2Last Post: 2nd Dec 2012, 10:43 -
How do you open a video as individual frames?
By ferrarirobot in forum Newbie / General discussionsReplies: 2Last Post: 29th Oct 2012, 18:02 -
Problematic interlaced source (missing/dupped fields)
By Dogway in forum RestorationReplies: 6Last Post: 4th Feb 2012, 20:19 -
VHS with interlaced AND rolling FIELDS?
By Heiler in forum RestorationReplies: 22Last Post: 22nd Oct 2011, 17:08