Changes between Version 49 and Version 50 of DenoiseExamples


Ignore:
Timestamp:
Oct 3, 2024, 12:17:25 AM (21 months ago)
Author:
MasterQuestionable
Comment:

͏    "-pix_fmt:v" seems pointless.

͏    Per:
͏    ffmpeg -hide_banner -pix_fmts
͏    https://ffmpeg.org/ffmpeg.html#Advanced-Video-options

Legend:

Unmodified
Added
Removed
Modified
  • DenoiseExamples

    v49 v50  
    196196$ ffmpeg -i "${In}" \
    197197  -filter:v "atadenoise=0a=0.02:0b=0.04:1a=0.02:1b=0.04:2a=0.02:2b=0.04:s=9:p=7:a='p':0s=32767:1s=32767:2s=32767" \
    198   -codec:v 'libx264' -pix_fmt:v 'yuv420p' \
     198  -codec:v 'libx264' -pix_fmt 'yuv420p' \
    199199  -codec:a 'copy' \
    200200  "${Out}"
     
    230230$ ffmpeg -i "${In}" \
    231231  -filter:v "bm3d=sigma=1.0:block=8:bstep=4:group=1:range=9:mstep=1:thmse=0:hdthr=2.70:estim='basic':ref='disabled':planes=7" \
    232   -codec:v 'libx264' -pix_fmt:v 'yuv420p' \
     232  -codec:v 'libx264' -pix_fmt 'yuv420p' \
    233233  -codec:a 'copy' \
    234234  "${Out}"
     
    264264$ ffmpeg -i "${In}" \
    265265  -filter:v "chromanr=thres=30:sizew=5:sizeh=5:stepw=1:steph=1:threy=200:threu=200:threv=200:distance='manhattan’'" \
    266   -codec:v 'libx264' -pix_fmt:v 'yuv420p' \
     266  -codec:v 'libx264' -pix_fmt 'yuv420p' \
    267267  -codec:a 'copy' \
    268268  "${Out}"
     
    304304$ ffmpeg -i "${In}" \
    305305  -filter:v "dctdnoiz=sigma=0:overlap=-1:n=3" \
    306   -codec:v 'libx264' -pix_fmt:v 'yuv420p' \
     306  -codec:v 'libx264' -pix_fmt 'yuv420p' \
    307307  -codec:a 'copy' \
    308308  "${Out}"
     
    335335$ ffmpeg -i "${In}" \
    336336  -filter:v "fftdnoiz=sigma=1:amount=1:block=32:overlap=0.5:method='wiener':prev=0:next=0:planes=7:window='hann'" \
    337   -codec:v 'libx264' -pix_fmt:v 'yuv420p' \
     337  -codec:v 'libx264' -pix_fmt 'yuv420p' \
    338338  -codec:a 'copy' \
    339339  "${Out}"
     
    370370$ ffmpeg -i "${In}" \
    371371  -filter:v "hqdn3d=luma_spatial=4.00:chroma_spatial=3.00:luma_tmp=6.00:chroma_tmp=4.5" \
    372   -codec:v 'libx264' -pix_fmt:v 'yuv420p' \
     372  -codec:v 'libx264' -pix_fmt 'yuv420p' \
    373373  -codec:a 'copy' \
    374374  "${Out}"
     
    426426$ ffmpeg -i "${In}" \
    427427  -filter:v "nlmeans=s=1.00:p=7:pc=0:r=15:rc=0" \
    428   -codec:v 'libx264' -pix_fmt:v 'yuv420p' \
     428  -codec:v 'libx264' -pix_fmt 'yuv420p' \
    429429  -codec:a 'copy' \
    430430  "${Out}"
     
    465465$ ffmpeg -i "${In}" \
    466466  -filter:v "fftdnoiz=owdenoise=depth=8:luma_strength=1:chroma_strength=1 " \
    467   -codec:v 'libx264' -pix_fmt:v 'yuv420p' \
     467  -codec:v 'libx264' -pix_fmt 'yuv420p' \
    468468  -codec:a 'copy' \
    469469  "${Out}"
     
    495495$ ffmpeg -i "${In}" \
    496496  -filter:v "vaguedenoiser=threshold=2:method='garrote':nsteps=6:percent=85:planes=7:type='universal'" \
    497   -codec:v 'libx264' -pix_fmt:v 'yuv420p' \
     497  -codec:v 'libx264' -pix_fmt 'yuv420p' \
    498498  -codec:a 'copy' \
    499499  "${Out}"