Quote:
deinterlacing and noise reduction with AviSynth tools like QTGMC and SMDegrain.
|
Be careful when deinterlacing with QTGMC and denoising with Temporal filters with motion compensation based on MVTools like SMDegrain, TemporalDegrain, etc.
QTGMC denoises by itself to rebuild the best progressive frames and it is easy to over-process the videos.
Consider to use QTGMC in lossless mode, where while trying to match the original fileds some of the denoise is reduced, like (SourceMatch=3, NoiseProcess=2) or something like that.
Examples of (basic) restoration here, where some are over-processed in purpose:
https://www.youtube.com/channel/UCMs...h1MmNAs7I8nu4g
Quote:
h264 is very common and largely supported now, but, for example, in Italy all TV channels will switch to h265 by the end of the year, even for SD broadcast.
In the past h265 had problems with interlaced material, now solved because it stores the interlaced video as separated fields, but it is not your case.
It requires more power to code/decode, but (theoretically) reduces final size at the same "quality" of h264.
As per today, I would stay in h264 and keep the
HuffYUV master for future work, but YMMV.
Edit: concerning the approach, I only use ffmpeg command line to have full control of all parameters, for example:
Code:
ffmpeg.exe -i input.avs -c:v libx264 -aspect 4:3 -crf xx -c:a aac -b:a xxxx output.mp4