For Deinterlacing mp4.
I have been using:
Found the code with an online search.Code:ffmpeg -i C:\IN.mp4 -filter:v bwdif=mode=send_field:parity=auto:deint=all C:\OUT.mp4
It appeared to be the most recent advice.
Seems to works pretty good.
Just wanted to know if anybody has any updated code,
or knowledge of settings that could be useful?
--------------
Just as a side note:
A lot of mp4 can have very clear horizontal interlace lines crossing moving objects,
but Media Info says Progressive.
The above code works well, but any extra settings are welcomed.
+ Reply to Thread
Results 1 to 4 of 4
-
-
Options:
send_frame
[Output one frame for each frame.]
Or;
send_field
[Output one frame for each field.]
Can anybody elaborate on these options?Last edited by Tom4; 1st Jun 2022 at 19:00.
-
11.18 bwdif
Deinterlace the input video ("bwdif" stands for "Bob Weaver Deinterlacing Filter").
Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic interpolation algorithms. It accepts the following parameters:
mode
The interlacing mode to adopt. It accepts one of the following values:
0, send_frame
Output one frame for each frame.
1, send_field
Output one frame for each field.
The default value is send_field.
parity
The picture field parity assumed for the input interlaced video. It accepts one of the following values:
0, tff
Assume the top field is first.
1, bff
Assume the bottom field is first.
-1, auto
Enable automatic detection of field parity.
The default value is auto. If the interlacing is unknown or the decoder does not export this information, top field first will be assumed.
deint
Specify which frames to deinterlace. Accepts one of the following values:
0, all
Deinterlace all frames.
1, interlaced
Only deinterlace frames marked as interlaced.
The default value is all. -
Can anybody elaborate on these options?
=> So the filter will first create one frame per field and then drop one of the interpolated fields. <> same-rate-deinterlacing.)
1, send_field -> Output one frame for each field.
=> So the filter will first create one frame per field. <> double-rate-deinterlacing <> bob-deintelacing.
A lot of mp4 can have very clear horizontal interlace lines crossing moving objects,
but Media Info says Progressive.users currently on my ignore list: deadrats, Stears555, marcorocchini
Similar Threads
-
deinterlace help
By maudit in forum Newbie / General discussionsReplies: 7Last Post: 13th May 2022, 22:40 -
how do i add libx264 and hevc to ffmpeg when i compile ffmpeg for ubuntu 21
By oduodui in forum Newbie / General discussionsReplies: 2Last Post: 17th Jul 2021, 04:12 -
Get the complete FFmpeg command line when using FFmpeg Batch Converter
By pascor in forum Newbie / General discussionsReplies: 8Last Post: 13th May 2021, 23:14 -
[FFMPEG] Is there a way to remove this part that FFMPEG puts in the meta?
By GEOLINK in forum Newbie / General discussionsReplies: 2Last Post: 1st Feb 2021, 17:51 -
How to get ffmpeg deinterlace to work like handbrake decomb
By ptr727 in forum Video ConversionReplies: 7Last Post: 17th Mar 2019, 20:03