Deinterlace the input video ("yadif" means "yet another deinterlacing filter").
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.
'2, send_frame_nospatial'
Like send_frame, but it skips the spatial interlacing check.
'3, send_field_nospatial'
Like send_field, but it skips the spatial interlacing check.
The default value is send_frame.
'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. Accept one of the following values:
'0, all'
Deinterlace all frames.
'1, interlaced'
Only deinterlace frames marked as interlaced.
The default value is all.
'FFMPEG > FFMPEG 기초' 카테고리의 다른 글
인코딩 된 영상의 품질을 측정하는 방법!!(PSNR, SSIM 등) 영상품질측정 기법들 정리 (4) | 2023.05.16 |
---|---|
FFMPEG에서 h264_nvenc 인코딩 옵션 (0) | 2023.03.07 |
디인터레이스 FFMPEG (0) | 2022.10.27 |
코덱이란 무엇인가? (0) | 2020.06.30 |
CBR / VBR / 1Pass / 2Pass 영상 인코딩 각 압축방식에 대한 정리 (0) | 2019.05.23 |